Font constructor

Font({
  1. String? family,
  2. Float? scale,
})

Implementation

Font({
  this.family,
  this.scale,
});