Font constructor

Font(
  1. {String? fontName,
  2. double? fontSize}
)

Implementation

Font({
  this.fontName,
  this.fontSize,
});