ExtractQueryParams class

Represents query parameters for API requests in a structured format.

Constructors

ExtractQueryParams({required Map<String, dynamic> params})
Constructor for creating an ExtractQueryParams instance.
ExtractQueryParams.fromQueryString(String queryString)
Factory constructor to create an instance from a query string.
factory

Properties

hashCode int
The hash code for this object.
no setterinherited
params Map<String, dynamic>
A map containing 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
toJson() Map<String, dynamic>
Converts the query parameters to a JSON representation.
toQueryString() String
Converts the parameters to a URL-encoded query string.
toString() String
A string representation of this object.
inherited

Operators

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