RadialValueBar constructor
const
RadialValueBar({})
RadialValueBar is used to render the value bar in the RadialGauge.
RadialGauge(
valueBar: RadialValueBar(
value: 10,
color: Colors.blue,
),
),
Implementation
const RadialValueBar({
Key? key,
required this.value,
this.color = Colors.blue,
this.valueBarThickness = 10,
this.gradient,
this.radialOffset = 0,
}) : super(key: key);