Large constructor

Large({
  1. required TextStyle style,
  2. required FontWeight regular,
  3. required Color onBackground,
  4. required Color secondary,
})

Implementation

Large({
  required TextStyle style,
  required FontWeight regular,
  required Color onBackground,
  required Color secondary,
}) : regular = LargeRegular(
        style: style.copyWith(fontWeight: regular),
        onBackground: onBackground,
        secondary: secondary,
      );