FastInkWell constructor
const
FastInkWell({
- Key? key,
- required Widget child,
- BorderRadius borderRadius = const BorderRadius.all(Radius.circular(8)),
- bool isEnabled = true,
- Color? highlightColor,
- Color? hoverColor,
- Color? focusColor,
- ValueChanged<
bool> ? onHover, - 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,
});