LargeRegular constructor

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

Implementation

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