Large constructor
- required TextStyle style,
- required FontWeight regular,
- required Color onBackground,
- 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,
);