LargestBold constructor

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

Implementation

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