RealmMapOfObject<T extends RealmObjectBase> extension
- on
-
- RealmMap<
T?>
- RealmMap<
Methods
-
changesFor(
[List< String> ? keyPaths]) → Stream<RealmMapChanges< T?> > -
Available on RealmMap<
Allows listening for changes when the contents of this collection changes on one of the providedT?> , provided by the RealmMapOfObject extensionkeyPaths
. IfkeyPaths
is null, default notifications will be raised (same asRealmMap.change
). IfkeyPaths
is an empty list, only notifications related to the collection itself will be raised (such as adding or removing elements). -
query(
String query, [List< Object?> arguments = const []]) → RealmResults<T> -
Available on RealmMap<
Filters the map values and returns a new RealmResults according to the providedT?> , provided by the RealmMapOfObject extensionquery
(with optionalarguments
).