GuildCheck.any constructor

GuildCheck.any(
  1. Iterable<Guild> guilds,
  2. {String? name}
)

Create a GuildCheck that succeeds if the context originated in any of guilds.

You might also be interested in:

Implementation

GuildCheck.any(Iterable<Guild> guilds, {String? name})
    : this.anyId(guilds.map((guild) => guild.id), name: name);