onCancelPress method
void
onCancelPress()
Implementation
void onCancelPress() async {
bool close = await _onWillPop();
if (!mounted) return;
if (close) {
Navigator.of(context).pop(getPopReturnValue());
}
}