materialInkWell method
Implementation
Widget materialInkWell(
GestureTapCallback onTap, {
Color color = Colors.transparent,
Key? key,
}) {
return Material(
color: color,
key: key,
child: InkWell(
child: this,
onTap: onTap,
),
);
}