RealmResultsOfObject<T extends RealmObjectBase> extension
- on
-
- RealmResults<
T>
- RealmResults<
Methods
-
changesFor(
[List< String> ? keyPaths]) → Stream<RealmResultsChanges< T> > -
Available on RealmResults<
Allows listening for changes when the contents of this collection changes on one of the providedT> , provided by the RealmResultsOfObject extensionkeyPaths
. IfkeyPaths
is null, default notifications will be raised (same asRealmResults.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> args = const []]) → RealmResults<T> -
Available on RealmResults<
Returns a new RealmResults filtered according to the provided query.T> , provided by the RealmResultsOfObject extension