removeByName method

bool removeByName(
  1. String name
)

Removes the subscription from the set that matches by name, if it exists.

Implementation

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