push<T extends Object?> method
Push the given route onto the navigator.
Implementation
@optionalTypeArgs
Future<T?> push<T extends Object?>(Route<T> route) async {
final push = appNavigator?.push<T>(route);
return push;
}