HistoryEntry class

A class representing a history entry.

Constructors

HistoryEntry({required String path, required Map<String, String> parameters, required String fullPath, required String cleanPath, required Map<String, String> urlParameters})

Properties

cleanPath String
The clean path of the route e.g. '/profile/123?foo=bar&baz=qux' will be '/profile/123'
final
fullPath String
The full path of the route e.g. '/user/123' e.g. '/user/123?foo=bar&baz=qux'
final
hashCode int
The hash code for this object.
no setterinherited
parameters Map<String, String>
The parameters of the route e.g. '/user/:id' with '/user/123' will be {id: 123}
final
path String
The path of the route e.g. '/user/:id'
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
urlParameters Map<String, String>
The url parameters of the route e.g. '/user' with '/user?foo=bar' will be {foo: bar}
final

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.
inherited