FastInkWell constructor

const FastInkWell({
  1. Key? key,
  2. required Widget child,
  3. BorderRadius borderRadius = const BorderRadius.all(Radius.circular(8)),
  4. bool isEnabled = true,
  5. Color? highlightColor,
  6. Color? hoverColor,
  7. Color? focusColor,
  8. ValueChanged<bool>? onHover,
  9. VoidCallback? onTap,
})

Implementation

const FastInkWell({
  super.key,
  required this.child,
  this.borderRadius = const BorderRadius.all(Radius.circular(8)),
  this.isEnabled = true,
  this.highlightColor,
  this.hoverColor,
  this.focusColor,
  this.onHover,
  this.onTap,
});