UriMatch class

The result of a UriPattern.match call.

Constructors

UriMatch(UriPattern pattern, Uri input, Map<String, String?> parameters, Uri rest)

Properties

hashCode int
The hash code for this object.
no setteroverride
input Uri
The Uri on which the match was computed.
final
parameters Map<String, String?>
A map of parameters parsed by the UriPattern that produced this match.
final
pattern UriPattern
The pattern used to match against input.
final
rest Uri
The remaining parts of the input after the match. This is UriPattern implementation-specific, but should typically include the rest of the path if matched as a prefix, and recognized query parameters.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
override

Operators

operator ==(Object other) bool
The equality operator.
override