TypographyConfig constructor

const TypographyConfig({
  1. required String fontFamily,
  2. required double titleSize,
  3. required double bodySize,
  4. required double captionSize,
})

Creates a new TypographyConfig instance.

Implementation

const TypographyConfig({
  required this.fontFamily,
  required this.titleSize,
  required this.bodySize,
  required this.captionSize,
});