PlatfomTouchFeedback constructor

const PlatfomTouchFeedback({
  1. required VoidCallback? onTap,
  2. required Widget child,
  3. VoidCallback? onLongTap,
  4. BorderRadius? borderRadius,
  5. Color? color,
  6. Color? hoverColor,
  7. Color? androidSplashColor,
  8. List<BoxShadow> shadow = const [],
  9. Key? key,
})

Implementation

const PlatfomTouchFeedback({
  required this.onTap,
  required this.child,
  this.onLongTap,
  this.borderRadius,
  this.color,
  this.hoverColor,
  this.androidSplashColor,
  this.shadow = const [],
  super.key,
});