Fonts constructor

Fonts({
  1. required TextStyle style,
  2. required double largest,
  3. required double larger,
  4. required double large,
  5. required double big,
  6. required double medium,
  7. required double normal,
  8. required double small,
  9. required double smaller,
  10. required double smallest,
  11. required FontWeight bold,
  12. required FontWeight regular,
  13. required Color onBackground,
  14. required Color onPrimary,
  15. required Color secondary,
  16. required Color primary,
  17. required Color primaryHighlightLightest,
  18. required Color danger,
  19. required Color secondaryHighlightDarkest,
  20. required Color secondaryHighlight,
})

Implementation

Fonts({
  required TextStyle style,
  required double largest,
  required double larger,
  required double large,
  required double big,
  required double medium,
  required double normal,
  required double small,
  required double smaller,
  required double smallest,
  required FontWeight bold,
  required FontWeight regular,
  required Color onBackground,
  required Color onPrimary,
  required Color secondary,
  required Color primary,
  required Color primaryHighlightLightest,
  required Color danger,
  required Color secondaryHighlightDarkest,
  required Color secondaryHighlight,
})  : largest = Largest(
        style: style.copyWith(fontSize: largest),
        bold: bold,
        regular: regular,
        onBackground: onBackground,
        onPrimary: onPrimary,
        secondary: secondary,
      ),
      larger = Larger(
        style: style.copyWith(fontSize: larger),
        regular: regular,
        onBackground: onBackground,
        secondary: secondary,
      ),
      large = Large(
        style: style.copyWith(fontSize: large),
        regular: regular,
        onBackground: onBackground,
        secondary: secondary,
      ),
      big = Big(
        style: style.copyWith(fontSize: big),
        regular: regular,
        onBackground: onBackground,
        onPrimary: onPrimary,
        secondary: secondary,
        primary: primary,
      ),
      medium = Medium(
        style: style.copyWith(fontSize: medium),
        regular: regular,
        onBackground: onBackground,
        onPrimary: onPrimary,
        primary: primary,
        primaryHighlightLightest: primaryHighlightLightest,
        secondary: secondary,
      ),
      normal = Normal(
        style: style.copyWith(fontSize: normal),
        bold: bold,
        regular: regular,
        onBackground: onBackground,
        onPrimary: onPrimary,
        danger: danger,
        primary: primary,
        secondary: secondary,
        secondaryHighlightDarkest: secondaryHighlightDarkest,
      ),
      small = Small(
        style: style.copyWith(fontSize: small),
        regular: regular,
        danger: danger,
        onBackground: onBackground,
        onPrimary: onPrimary,
        primary: primary,
        secondary: secondary,
        secondaryHighlight: secondaryHighlight,
        secondaryHighlightDarkest: secondaryHighlightDarkest,
      ),
      smaller = Smaller(
        style: style.copyWith(fontSize: smaller),
        bold: bold,
        regular: regular,
        onPrimary: onPrimary,
        secondary: secondary,
        onBackground: onBackground,
        primary: primary,
      ),
      smallest = Smallest(
        style: style.copyWith(fontSize: smallest),
        regular: regular,
        onBackground: onBackground,
        onPrimary: onPrimary,
        secondary: secondary,
      );