inkwell method
Add InkWell to widget
Equivalent to
InkWell(
hoverColor: hover,
focusColor: focus,
highlightColor: highlight,
splashColor: splash,
radius: radius,
autofocus: autofocus
)
Implementation
Niku inkwell({
Color? hover,
Color? focus,
Color? highlight,
Color? splash,
double? radius,
bool autofocus = false,
VoidCallback? onTap,
}) {
_widget = InkWell(
child: _widget,
hoverColor: hover,
focusColor: focus,
highlightColor: highlight,
splashColor: splash,
radius: radius,
onTap: onTap,
autofocus: autofocus,
);
return this;
}