removeUsers method

EntryInfo<K, U> removeUsers(
  1. Set<U> users
)

Removes users from the entry's user list.

Implementation

EntryInfo<K, U> removeUsers(Set<U> users) => copyWith(
      users: {...this.users}..removeAll(users),
    );