LinearGaugeBoxDecoration constructor

const LinearGaugeBoxDecoration({
  1. Color backgroundColor = Colors.grey,
  2. double? thickness = 4.0,
  3. double? borderRadius,
  4. Color? linearGaugeValueColor = Colors.blue,
  5. LinearEdgeStyle? edgeStyle = LinearEdgeStyle.bothCurve,
  6. LinearGradient? linearGradient,
})

An immutable description of how to paint a box of LinearGauge.

Implementation

const LinearGaugeBoxDecoration(
    {this.backgroundColor = Colors.grey,
    this.thickness = 4.0,
    this.borderRadius,
    this.linearGaugeValueColor = Colors.blue,
    this.edgeStyle = LinearEdgeStyle.bothCurve,
    this.linearGradient});