TextStyleSpec constructor

const TextStyleSpec({
  1. String? fontFamily,
  2. int? fontSize,
  3. double? lineHeight,
  4. Color? color,
  5. String? fontWeight,
})

Implementation

const TextStyleSpec({
  this.fontFamily,
  this.fontSize,
  this.lineHeight,
  this.color,
  this.fontWeight,
});