InkWellWidget constructor

const InkWellWidget({
  1. Key? key,
  2. double? bordeRadius,
  3. required dynamic onTap(),
  4. required Widget child,
  5. Color? backgroundColor,
  6. EdgeInsets? margin,
  7. EdgeInsets? padding,
  8. bool? canRequestFocus,
})

Implementation

const InkWellWidget(
    {super.key,
    this.bordeRadius,
    required this.onTap,
    required this.child,
    this.backgroundColor,
    this.margin,
    this.padding,
    this.canRequestFocus});