DraggableItemInkWell constructor

const DraggableItemInkWell({
  1. Key? key,
  2. required VoidCallback onPressed,
  3. required Widget child,
  4. BorderRadius? borderRadius,
  5. Color? hoverColor,
  6. Color? highlightColor,
  7. Color? focusColor,
  8. MaterialStateProperty<Color?>? overlayColor,
  9. Color? splashColor,
  10. InteractiveInkFeatureFactory? splashFactory,
})

Implementation

const DraggableItemInkWell({
  super.key,
  required this.onPressed,
  required this.child,
  this.borderRadius,
  this.hoverColor,
  this.highlightColor,
  this.focusColor,
  this.overlayColor,
  this.splashColor,
  this.splashFactory,
});