PlatformPopScope constructor

const PlatformPopScope({
  1. Key? key,
  2. required Widget child,
  3. required bool canPop,
  4. required VoidCallback onPop,
})

Implementation

const PlatformPopScope({
  super.key,
  required this.child,
  required this.canPop,
  required this.onPop,
});