UserCheck.any constructor

UserCheck.any(
  1. Iterable<User> users,
  2. {String? name}
)

Create a new UserCheck that succeeds if the context was created by any one of users.

You might also be interested in:

Implementation

UserCheck.any(Iterable<User> users, {String? name})
    : this.anyId(users.map((user) => user.id), name: name);