EyeDropOverlay constructor

const EyeDropOverlay({
  1. required List<Color> colors,
  2. Offset? cursorPosition,
  3. bool touchable = false,
  4. Key? key,
})

Implementation

const EyeDropOverlay({
  required this.colors,
  this.cursorPosition,
  this.touchable = false,
  Key? key,
}) : super(key: key);