BigRegular constructor
Implementation
BigRegular({
required TextStyle style,
required Color onBackground,
required Color onPrimary,
required Color secondary,
}) : onBackground = style.copyWith(color: onBackground),
onPrimary = style.copyWith(color: onPrimary),
secondary = style.copyWith(color: secondary);