popScreen static method
void
popScreen({
Implementation
static void popScreen({GlobalKey<NavigatorState>? navigationKey}) {
if (navigationKey == null) {
_navigationKey.currentState!.pop();
} else
navigationKey.currentState!.pop();
}