navigateTo method Null safety
Push the given route onto the navigator.
path
you register path.
arguments
you want to give path
arguments.
replace
will replace route
clearTrace
will clear all route and push path
.
isSingleTop
if path
is top,There was no response.
Implementation
Future<dynamic> navigateTo(
String path, {
Map<String, dynamic>? arguments,
bool? replace,
bool? clearTrace,
bool? isSingleTop,
}) =>
transResult(
path: path,
arguments: arguments,
replace: replace,
clearTrace: clearTrace,
isSingleTop: isSingleTop);