BaseInkWell constructor

BaseInkWell({
  1. EdgeInsetsGeometry margin = EdgeInsets.zero,
  2. EdgeInsetsGeometry padding = EdgeInsets.zero,
  3. Color? color,
  4. double borderRadius = 0,
  5. Decoration? decoration,
  6. required Widget child,
  7. VoidCallback? onPressed,
})

Implementation

BaseInkWell(
    {this.margin = EdgeInsets.zero,
    this.padding = EdgeInsets.zero,
    this.color,
    this.borderRadius = 0,
    this.decoration,
    required this.child,
    this.onPressed});