LargestBold constructor

LargestBold({
  1. required TextStyle style,
  2. required Color onBackground,
  3. required Color onPrimary,
})

Implementation

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