DeepLink.single constructor

DeepLink.single(
  1. PageRouteInfo<Object?> route, {
  2. bool navigate = true,
})

Builds a deep-link from a single PageRouteInf

Implementation

factory DeepLink.single(PageRouteInfo route, {bool navigate = true}) {
  return _RoutesDeepLink([route], navigate: navigate);
}