NiceTypography constructor

const NiceTypography({
  1. required String fontFamily,
  2. required TextStyle heading1,
  3. required TextStyle heading2,
  4. required TextStyle heading3,
  5. required TextStyle body,
  6. required TextStyle bodySmall,
  7. required TextStyle caption,
  8. required TextStyle label,
  9. required TextStyle button,
})

Implementation

const NiceTypography({
  required this.fontFamily,
  required this.heading1,
  required this.heading2,
  required this.heading3,
  required this.body,
  required this.bodySmall,
  required this.caption,
  required this.label,
  required this.button,
});