color property

Color? color
final

Specifies the color value of the range.

Defaults to Color(0xffF45656) in LightTheme and Color(0xffFF7B7B) in DarkTheme.

This snippet shows how to set the color for a LinearGaugeRange.


 LinearGaugeRange(
 color: Colors.Red,
 );

Implementation

final Color? color;