LargerRegular constructor

LargerRegular({
  1. required TextStyle style,
  2. required Color onBackground,
  3. required Color secondary,
})

Implementation

LargerRegular({
  required TextStyle style,
  required Color onBackground,
  required Color secondary,
})  : onBackground = style.copyWith(color: onBackground),
      secondary = style.copyWith(color: secondary);