call method

RoutePath<T> call([
  1. RouteSegments segments = const {},
  2. RouteParameters parameters = const {}
])

Implementation

RoutePath<T> call([
  RouteSegments segments = const {},
  RouteParameters parameters = const {},
]) =>
    RoutePath<T>(
      this,
      segments,
      parameters,
      isPublicRoute,
    );