MatchResult<T>.fail constructor

MatchResult<T>.fail(
  1. RouteMatcher<T>? route
)

Implementation

MatchResult.fail(RouteMatcher<T>? route)
    : this._(
        isSuccess: false,
        route: route,
        arguments: null,
      );