QueryMap class final

Provides query parameters of a request as Map<String, dynamic>.

@Get(path: '/something')
Future<Response> fetch(@QueryMap() Map<String, dynamic> query);

Supports passing list value as follows:

fetch({'foo':'bar','list':[1,2]});
// something?foo=bar&list=1&list=2
Annotations
  • @immutable
  • @Target({TargetKind.parameter})

Constructors

QueryMap()
Provides query parameters of a request as Map<String, dynamic>.
const

Properties

hashCode int
The hash code for this object.
no setterinherited
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.
inherited

Operators

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