PFont constructor

PFont(
  1. String family,
  2. num size, {
  3. bool bold = false,
  4. bool italic = false,
  5. String? familyFallback,
})

Implementation

PFont(this.family, this.size,
    {this.bold = false, this.italic = false, this.familyFallback});