GaugeTextStyle constructor

const GaugeTextStyle({
  1. Color? color,
  2. String? fontFamily,
  3. FontStyle? fontStyle,
  4. FontWeight? fontWeight,
  5. double? fontSize,
})

Creates a gauge text style with default or required properties.

Implementation

const GaugeTextStyle(
    {this.color,
    this.fontFamily,
    this.fontStyle,
    this.fontWeight,
    this.fontSize});