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