RealmListOfObject<T extends RealmObjectBase> extension

on

Methods

changesFor([List<String>? keyPaths]) Stream<RealmListChanges<T>>

Available on RealmList<T>, provided by the RealmListOfObject extension

Allows listening for changes when the contents of this collection changes on one of the provided keyPaths. If keyPaths is null, default notifications will be raised (same as RealmList.change). If keyPaths 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 RealmList<T>, provided by the RealmListOfObject extension

Filters the list and returns a new RealmResults according to the provided query (with optional arguments).