DesignSystemTypography constructor

const DesignSystemTypography({
  1. required TextStyle display,
  2. required TextStyle headline,
  3. required TextStyle title,
  4. required TextStyle body,
  5. required TextStyle label,
  6. required TextStyle button,
  7. required TextStyle caption,
})

Implementation

const DesignSystemTypography({
  required this.display,
  required this.headline,
  required this.title,
  required this.body,
  required this.label,
  required this.button,
  required this.caption,
});