SmallerBold constructor

SmallerBold({
  1. required TextStyle style,
  2. required Color onPrimary,
  3. required Color secondary,
})

Implementation

SmallerBold({
  required TextStyle style,
  required Color onPrimary,
  required Color secondary,
})  : onPrimary = style.copyWith(color: onPrimary),
      secondary = style.copyWith(color: secondary);