RealmSetOfObject<T extends RealmObjectBase> extension
- on
-
- RealmSet<
T>
- RealmSet<
Methods
-
changesFor(
[List< String> ? keyPaths]) → Stream<RealmSetChanges< T> > -
Available on RealmSet<
Allows listening for changes when the contents of this collection changes on one of the providedT> , provided by the RealmSetOfObject extensionkeyPaths
. IfkeyPaths
is null, default notifications will be raised (same asRealmSet.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 RealmSet<
Filters the set and returns a new RealmResults according to the providedT> , provided by the RealmSetOfObject extensionquery
(with optionalarguments
).