goBack static method

dynamic goBack([
  1. @Deprecated("The context is not necessary for this version, and will completely removed in 2.0.1") BuildContext? context
])

Implementation of navigator to goback to previous context

Implementation

static goBack([@Deprecated("The context is not necessary for this version, and will completely removed in 2.0.1") cupertino.BuildContext? context]) {
  if(KareeRouter.navigatorKey.currentState!.canPop())
      KareeRouter.navigatorKey.currentState!.pop(true);
}