MRippleLayout constructor

const MRippleLayout({
  1. Key? key,
  2. double? radius,
  3. double? width,
  4. double? height,
  5. Color? btnColor,
  6. Color? touchColor,
  7. Color? rippleColor,
  8. GestureTapCallback? tapCallback,
  9. required Widget child,
})

Implementation

const MRippleLayout({
  Key? key,
  this.radius,
  this.width,
  this.height,
  this.btnColor,
  this.touchColor,
  this.rippleColor,
  this.tapCallback,
  required this.child,
}) : super(key: key);