GaugeTextStyle constructor

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

Creates a gauge text style with default or required properties.

Implementation

const GaugeTextStyle(
    {this.color,
    this.fontFamily = 'Segoe UI',
    this.fontStyle = FontStyle.normal,
    this.fontWeight = FontWeight.normal,
    this.fontSize = 12});