QueryParameters class

request query parameters helper that can help you get data easily

Constructors

QueryParameters(Uri uri)
request query parameters helper that can help you get data easily

Properties

hashCode int
The hash code for this object.
no setterinherited
map Map<String, List<String>>
the main data that returned fro the request uri
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

getBool(String i) bool?
get value as bool
getDouble(String i) double?
get value as double
getInt(String i) int?
get value as int
getNum(String i) num?
get value as num
getString(String i) String?
get value as string
listBool(String i, [bool required = false]) List<bool?>?
get value as list of bool
listDouble(String i, [bool required = false]) List<double?>?
get value as list of double
listInt(String i, [bool required = false]) List<int?>?
get value as list of int
listNum(String i, [bool required = false]) List<num?>?
get value as list of num
listString(String i) List<String>?
get value as num
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