ModernFormDetector constructor

const ModernFormDetector({
  1. Key? key,
  2. GestureTapCallback? onTap,
  3. Future<void> onLongPress()?,
  4. Widget? child,
  5. BorderRadius? borderRadius,
})

Implementation

const ModernFormDetector({
  Key? key,
  this.onTap,
  this.onLongPress,
  this.child,
  this.borderRadius,
}) : super(key: key);