GuildMembersChunkEvent constructor

GuildMembersChunkEvent({
  1. required String guildId,
  2. required List<GuildMember> members,
  3. required int chunkIndex,
  4. required int chunkCount,
  5. List? notFound,
  6. List<PresenceUpdate>? presences,
  7. String? nonce,
})

Implementation

GuildMembersChunkEvent({
  required this.guildId,
  required this.members,
  required this.chunkIndex,
  required this.chunkCount,
  this.notFound,
  this.presences,
  this.nonce,
});