PointerIndicator constructor

const PointerIndicator({
  1. Key? key,
  2. bool enabled = true,
  3. double minIndicatorSize = 10.0,
  4. double normalIndicatorSize = 20.0,
  5. Color indicatorColor = const Color.fromRGBO(0, 0, 255, 0.2),
  6. Widget? child,
})

Implementation

const PointerIndicator({
  Key? key,
  this.enabled = true,
  this.minIndicatorSize = 10.0,
  this.normalIndicatorSize = 20.0,
  this.indicatorColor = const Color.fromRGBO(0, 0, 255, 0.2),
  this.child,
}) : super(key: key);