NiceDragIndicator constructor

const NiceDragIndicator({
  1. Key? key,
  2. required NiceDragIndicatorPosition position,
  3. Color? color,
  4. double thickness = 2,
  5. bool animated = true,
})

Implementation

const NiceDragIndicator({
  super.key,
  required this.position,
  this.color,
  this.thickness = 2,
  this.animated = true,
});