value property

  1. @override
double value
final

Specifies the pointer value of LinearShapePointer. 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 a shape marker pointer.


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

Implementation

@override
final double value;