BaseInkWell constructor

BaseInkWell({
  1. EdgeInsetsGeometry? padding,
  2. OutlinedBorder? shape,
  3. Color? color,
  4. required Widget child,
  5. VoidCallback? onPressed,
})

Implementation

BaseInkWell(
    {this.padding,
    this.shape,
    this.color,
    required this.child,
    this.onPressed});