xOnPopWrapper method
Implementation
Widget xOnPopWrapper(bool canPop,
{required void Function(bool didPop, dynamic data)? onPop}) {
return PopScope(
canPop: canPop,
onPopInvokedWithResult: (didPop, t) {
onPop?.call(didPop, t);
},
child: this,
);
}