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