addInkWell method

Widget addInkWell({
  1. required VoidCallback onTap,
})

Implementation

Widget addInkWell({required VoidCallback onTap}) {
  return InkWell(
    onTap: onTap,
    child: this,
  );
}