pop static method

Future pop({
  1. dynamic result,
  2. bool isRootNavigator = false,
})

Implementation

static Future pop({result,bool isRootNavigator=false}) async {
  Navigator.of(libNavigatorKey.currentContext!,rootNavigator: isRootNavigator).pop(result);
}