pointers property

List<BasePointer>? pointers
final

pointers takes the list of Pointer to render the value pointer/s

const LinearGauge(
 pointers: [
  Pointer(
   shape: PointerShape.circle,
   value: 50,
  color: Colors.green,
 ),
],

Implementation

///  pointers: [
///   Pointer(
///    shape: PointerShape.circle,
///    value: 50,
///   color: Colors.green,
///  ),
/// ],
/// ```
///
final List<BasePointer>? pointers;