shape property

PointerShape shape
final

shape Sets the shape of the pointer on the LinearGauge

const LinearGauge(
  pointer: Pointer(
   shape: PointerShape.circle,
 ),
)

default is to PointerShape.circle PointerShape has 4 types of shapes

  1. PointerShape.circle
  2. PointerShape.rectangle
  3. PointerShape.triangle
  4. PointerShape.diamond

Implementation

final PointerShape shape;