CustomInkWell constructor

const CustomInkWell({
  1. Key? key,
  2. required Widget child,
  3. required void onTap(),
})

Implementation

const CustomInkWell({
  Key? key,
  required this.child,
  required this.onTap,
}) : super(key: key);