ApperoTypography constructor

const ApperoTypography({
  1. double titleLargeFontSize = 22.0,
  2. FontWeight titleLargeFontWeight = FontWeight.bold,
  3. double bodyMediumFontSize = 16.0,
  4. FontWeight bodyMediumFontWeight = FontWeight.normal,
  5. double labelLargeFontSize = 16.0,
  6. FontWeight labelLargeFontWeight = FontWeight.w500,
  7. double bodySmallFontSize = 14.0,
  8. FontWeight bodySmallFontWeight = FontWeight.normal,
  9. String? fontFamily,
})

Implementation

const ApperoTypography({
  this.titleLargeFontSize = 22.0,
  this.titleLargeFontWeight = FontWeight.bold,
  this.bodyMediumFontSize = 16.0,
  this.bodyMediumFontWeight = FontWeight.normal,
  this.labelLargeFontSize = 16.0,
  this.labelLargeFontWeight = FontWeight.w500,
  this.bodySmallFontSize = 14.0,
  this.bodySmallFontWeight = FontWeight.normal,
  this.fontFamily,
});