NeoPopButtonTranslator constructor

const NeoPopButtonTranslator({
  1. required Widget child,
  2. required double depth,
  3. required Duration animationDuration,
  4. required VoidCallback onTapUp,
  5. VoidCallback? onTapDown,
  6. VoidCallback? onLongPress,
  7. Duration? forwardDuration,
  8. Duration? reverseDuration,
  9. Key? key,
})

Implementation

const NeoPopButtonTranslator({
  required this.child,
  required this.depth,
  required this.animationDuration,
  required this.onTapUp,
  this.onTapDown,
  this.onLongPress,
  this.forwardDuration,
  this.reverseDuration,
  Key? key,
}) : super(key: key);