FFDynamicallySizedPropsUnwatched<T> class
- Implemented types
- Available extensions
Constructors
-
FFDynamicallySizedPropsUnwatched({required Map<
String, FFPropWithMetadata< inner})T> > -
const
Properties
-
entries
→ Iterable<
MapEntry< String, T> > -
The map entries of this Map.
no setteroverride
-
ffAllLoaded
→ Map<
String, FFPropWithMetadata< T> > -
no setter
-
ffAllLoaded
→ Map<
String, FFPropWithMetadata< T> > -
Available on Map<
String, T> , provided by the FFPropWithMetadataMapHelpers extensionno setter -
ffAllLoading
→ Map<
String, FFPropWithMetadata< T> > -
no setter
-
ffAllLoading
→ Map<
String, FFPropWithMetadata< T> > -
Available on Map<
String, T> , provided by the FFPropWithMetadataMapHelpers extensionno setter - hashCode → int
-
The hash code for this object.
no setterinherited
-
inner
→ Map<
String, FFPropWithMetadata< T> > -
final
- 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 this Map.
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<
T> -
The values of this Map.
no setteroverride
Methods
-
addAll(
Map< String, T> other) → void -
Adds all key/value pairs of
otherto this map.override -
addEntries(
Iterable< MapEntry< newEntries) → voidString, T> > -
Adds all key/value pairs of
newEntriesto this map.override -
cast<
RK, RV> () → Map< RK, RV> -
Provides a view of this map as having
RKkeys andRVinstances, if necessary.override -
clear(
) → void -
Removes all entries from the map.
override
-
containsKey(
Object? key) → bool -
Whether this map contains the given
key.override -
containsValue(
Object? value) → bool -
Whether this map contains the given
value.override -
forEach(
void action(String key, T value)) → void -
Applies
actionto each key/value pair of the map.override -
loaded(
String key, T value) → void -
loaded(
String key, T value) → void -
Available on Map<
String, T> , provided by the FFPropWithMetadataMapHelpers extension -
loading(
String key, T value) → void -
loading(
String key, T value) → void -
Available on Map<
String, T> , provided by the FFPropWithMetadataMapHelpers extension -
map<
K2, V2> (MapEntry< K2, V2> convert(String key, T value)) → Map<K2, V2> -
Returns a new map where all entries of this map are transformed by
the given
convertfunction.override -
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
putIfAbsent(
String key, T ifAbsent()) → T -
Look up the value of
key, or add a new entry if it isn't there.override -
remove(
Object? key) → T? -
Removes
keyand its associated value, if present, from the map.override -
removeWhere(
bool test(String key, T value)) → void -
Removes all entries of this map that satisfy the given
test.override -
toString(
) → String -
A string representation of this object.
inherited
-
update(
String key, T update(T value), {T ifAbsent()?}) → T -
Updates the value for the provided
key.override -
updateAll(
T update(String key, T value)) → void -
Updates all values.
override
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
-
operator [](
Object? key) → T? -
The value for the given
key, ornullifkeyis not in the map.override -
operator []=(
String key, T value) → void -
Associates the
keywith the givenvalue.override