TextStyleConfig constructor

const TextStyleConfig({
  1. required double fontSize,
  2. FontWeight fontWeight = FontWeight.w400,
  3. Color? color,
  4. FontStyle? fontStyle,
  5. double? letterSpacing,
  6. double? height,
})

Implementation

const TextStyleConfig({
  required this.fontSize,
  this.fontWeight = FontWeight.w400,
  this.color,
  this.fontStyle,
  this.letterSpacing,
  this.height,
});