back<T extends Object> static method
Null safety
- [T? result]
Back the navigation, it's similar with Navigator.of(context).pop()`
Implementation
static void back<T extends Object>([T? result]) {
navigatorKey.currentState!.pop(result);
}