DeepLinkResult class

Result of parsing a deep link URL.

Constructors

DeepLinkResult({required String route, Map<String, dynamic> queryParams = const {}})
Creates a DeepLinkResult with the parsed route and query parameters.
const

Properties

hashCode int
The hash code for this object.
no setterinherited
hasQueryParams bool
Returns true if there are any query parameters.
no setter
payload Map<String, dynamic>
Converts query parameters to a payload map (alias for queryParams).
no setter
queryParams Map<String, dynamic>
Query parameters extracted from the URL (e.g., {'id': '123', 'name': 'Widget'})
final
route String
The route path (e.g., '/home', '/product', '/profile')
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.
inherited