Normal constructor
Implementation
Normal({
required TextStyle style,
required FontWeight bold,
required FontWeight regular,
required Color onBackground,
required Color onPrimary,
required Color danger,
required Color primary,
required Color secondary,
required Color secondaryHighlightDarkest,
}) : bold = NormalBold(
style: style.copyWith(fontWeight: bold),
onBackground: onBackground,
onPrimary: onPrimary,
),
regular = NormalRegular(
style: style.copyWith(fontWeight: regular),
danger: danger,
onBackground: onBackground,
onPrimary: onPrimary,
primary: primary,
secondary: secondary,
secondaryHighlightDarkest: secondaryHighlightDarkest,
);