FontModel constructor

FontModel({
  1. String? fontName,
  2. double? size,
  3. EliudFontWeight? weight,
  4. EliudFontStyle? style,
  5. EliudFontDecoration? decoration,
  6. RgbModel? color,
})

Implementation

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