Smaller constructor
Implementation
Smaller({
required TextStyle style,
required FontWeight bold,
required FontWeight regular,
required Color onPrimary,
required Color secondary,
required Color onBackground,
required Color primary,
}) : bold = SmallerBold(
style: style.copyWith(fontWeight: bold),
onPrimary: onPrimary,
secondary: secondary,
),
regular = SmallerRegular(
style: style.copyWith(fontWeight: regular),
onBackground: onBackground,
secondary: secondary,
onPrimary: onPrimary,
primary: primary,
);