go<R, P extends RouteParams> method
Implementation
Future<R?> go<R, P extends RouteParams>(BuildContext context,
{P? args, bool replace = false, bool useRootNavigator = false}) async {
final dynamic rtn = await this.route.go(context,
args: args, replace: replace, useRootNavigator: useRootNavigator);
return rtn as R?;
}