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