inkWell method

Widget inkWell(
  1. GestureTapCallback onTap, {
  2. Key? key,
})

Implementation

Widget inkWell(
  GestureTapCallback onTap, {
  Key? key,
}) {
  return InkWell(
    onTap: onTap,
    child: this,
    key: key,
  );
}