Font constructor

Font({
  1. FontWeight weight = FontWeight.normal,
  2. FontStyle style = FontStyle.normal,
  3. String family = "Arial",
  4. int size = 16,
})

Implementation

Font({this.weight = FontWeight.normal, this.style = FontStyle.normal, this.family = "Arial", this.size = 16});