NavigatorPopHandler constructor

const NavigatorPopHandler({
  1. Key? key,
  2. VoidCallback? onPop,
  3. bool enabled = true,
  4. required Widget child,
})

Creates an instance of NavigatorPopHandler.

Implementation

const NavigatorPopHandler({
  super.key,
  this.onPop,
  this.enabled = true,
  required this.child,
});