Parameters class

Constructors

Parameters(Map<String, dynamic>? params)
const

Properties

hashCode int
The hash code for this object.
no setteroverride
isEmpty bool
no setter
isNotEmpty bool
no setter
rawMap Map<String, dynamic>
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

get(String key, [dynamic defaultValue]) → dynamic
getBool(String key, [bool? defaultValue]) bool
getDouble(String key, [double? defaultValue]) double
getInt(String key, [int? defaultValue]) int
getNum(String key, [num? defaultValue]) num
getString(String key, [String? defaultValue]) String
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
optBool(String key, [bool? defaultValue]) bool?
optDouble(String key, [double? defaultValue]) double?
optInt(String key, [int? defaultValue]) int?
optNum(String key, [num? defaultValue]) num?
optString(String key, [String? defaultValue]) String?
toString() String
A string representation of this object.
override

Operators

operator +(Parameters other) Parameters
operator ==(Object other) bool
The equality operator.
override