AudioParamMap class
Properties
- entries→Iterable<
MapEntry< String,dynamic> > - The map entries of thisMap.no setterinherited
- hashCode→int
- The hash code for this object.no setterinherited
- isEmpty→bool
- Whether there is no key/value pair in the map.no setteroverride
- isNotEmpty→bool
- Whether there is at least one key/value pair in the map.no setteroverride
- keys→Iterable<
String> - The keys of thisMap.no setteroverride
- length→int
- The number of key/value pairs in the map.no setteroverride
- runtimeType→Type
- A representation of the runtime type of the object.no setterinherited
- values→Iterable<
Map> - The values of this
Map.no setteroverride
Methods
- addAll(
Map< String,dynamic> other)→ void - Adds all key/value pairs of
otherto this map.override - addEntries(
Iterable< MapEntry< newEntries)→ voidString,dynamic> > - Adds all key/value pairs of
newEntriesto this map.inherited - cast<
RK,RV> ()→Map< RK,RV> - Provides a view of this map as having
RKkeys andRVinstances,if necessary.inherited - clear(
)→ void - Removes all entries from the map.override
- containsKey(
dynamickey)→bool - Whether this map contains the given
key.override - containsValue(
dynamicvalue)→bool - Whether this map contains the given
value.override - forEach(
voidf(Stringkey,dynamicvalue))→ void - Applies
actionto each key/value pair of the map.override - map<
K2,V2> (MapEntry< K2,V2> transform(Stringkey,dynamicvalue))→Map<K2,V2> - Returns a new map where all entries of this map are transformed bythe given
convertfunction.inherited - noSuchMethod(
Invocationinvocation)→ dynamic - Invoked when a nonexistent method or property is accessed.inherited
- putIfAbsent(
Stringkey,dynamicifAbsent())→ dynamic - Look up the value of
key, or add a new entry if it isn't there.override - remove(
dynamickey)→String - Removes
keyand its associated value, if present, from the map.override - removeWhere(
booltest(Stringkey,dynamicvalue))→ void - Removes all entries of this map that satisfy the given
test.inherited - toString(
)→String - A string representation of this object.inherited
- update(
Stringkey,dynamicupdate(dynamicvalue), {dynamicifAbsent()?})→ dynamic - Updates the value for the provided
key.inherited - updateAll(
dynamicupdate(Stringkey,dynamicvalue))→ void - Updates all values.inherited
Operators
- operator ==(
Objectother)→bool - The equality operator.inherited
- operator [](
dynamickey)→Map? - The value for the given
key, ornullifkeyis not in the map.override - operator []=(
Stringkey,dynamicvalue)→ void - Associates the
keywith the givenvalue.override