HttpRouteParam class

Class used to retain parameter information (name, type, pattern)

Constructors

HttpRouteParam(String name, String pattern, HttpRouteParamType? type)

Properties

hashCode int
The hash code for this object.
no setterinherited
name String
final
pattern String
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
type HttpRouteParamType?
final

Methods

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

Operators

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

Static Properties

paramTypes List<HttpRouteParamType>
final

Static Methods

tryParse(String segment) HttpRouteParam?