SmallerRegular constructor

SmallerRegular({
  1. required TextStyle style,
  2. required Color onBackground,
  3. required Color secondary,
  4. required Color onPrimary,
  5. 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);