AdaptivePopScope constructor

const AdaptivePopScope({
  1. Key? key,
  2. double? swipeWidth,
  3. double? swipeThreshold,
  4. Future<Couple<bool, Object?>> onWillPop()?,
  5. required Widget child,
})

Implementation

const AdaptivePopScope({
  super.key,
  this.swipeWidth,
  this.swipeThreshold,
  this.onWillPop,
  required this.child,
});