value property

  1. @override
double value
final

Specifies the pointer value for LinearWidgetPointer. This value must be between the min and max value of an axis track.

Defaults to 0.

This snippet shows how to set a value for widget marker pointer.


SfLinearGauge(
markerPointers: [
LinearWidgetPointer(
value: 50,
)])

Implementation

@override
final double value;