removeByName method

bool removeByName(
  1. String name
)

Remove the query from the set that matches by name, if it exists.

Implementation

bool removeByName(String name) {
  return realmCore.eraseSubscriptionByName(this, name);
}