PointerPainter constructor

PointerPainter({
  1. double animation = 0.0,
  2. Color color = Colors.black,
  3. Color arrowTintColor = Colors.purple,
  4. double pointerHeight = 100,
})

Implementation

PointerPainter({
  this.animation = 0.0,
  this.color = Colors.black,
  this.arrowTintColor = Colors.purple,
  this.pointerHeight = 100,
});