navigateNamed method
Pops until given path
, if it already exists in stack
Implementation
@Deprecated('Use navigatePath instead')
Future<void> navigateNamed(
String path, {
bool includePrefixMatches = false,
OnNavigationFailure? onFailure,
}) =>
navigatePath(
path,
includePrefixMatches: includePrefixMatches,
onFailure: onFailure,
);