removeByQuery<T extends RealmObject> method

bool removeByQuery<T extends RealmObject>(
  1. RealmResults<T> query
)

Removes the query from the set, if it exists.

Implementation

bool removeByQuery<T extends RealmObject>(RealmResults<T> query) {
  return realmCore.eraseSubscriptionByResults(this, query);
}