FontEntity constructor

FontEntity({
  1. String? fontName,
  2. double? size,
  3. int? weight,
  4. int? style,
  5. int? decoration,
  6. RgbEntity? color,
})

Implementation

FontEntity({
  this.fontName,
  this.size,
  this.weight,
  this.style,
  this.decoration,
  this.color,
});