FontFamilies constructor

FontFamilies({
  1. String? standard,
  2. String? fixed,
  3. String? serif,
  4. String? sansSerif,
  5. String? cursive,
  6. String? fantasy,
  7. String? math,
})

Implementation

FontFamilies({
  this.standard,
  this.fixed,
  this.serif,
  this.sansSerif,
  this.cursive,
  this.fantasy,
  this.math,
});