GuildVoiceChannelUpdateRequest constructor

const GuildVoiceChannelUpdateRequest({
  1. required GuildVoiceChannelUpdateRequestTypeType type,
  2. String? topic,
  3. String? url,
  4. SnowflakeType? parentId,
  5. int? bitrate,
  6. int? userLimit,
  7. int? voiceConnectionLimit,
  8. List<GuildVoiceChannelUpdateRequestPermissionOverwrites>? permissionOverwrites,
  9. int? rateLimitPerUser,
  10. bool? nsfw,
  11. bool? nsfwOverride,
  12. ContentWarningLevel? contentWarningLevel,
  13. String? contentWarningText,
  14. Base64ImageType? icon,
  15. SnowflakeType? ownerId,
  16. ChannelNicknameOverrides? nicks,
  17. String? rtcRegion,
  18. String? name,
})

Implementation

const GuildVoiceChannelUpdateRequest({
  required this.type,
  this.topic,
  this.url,
  this.parentId,
  this.bitrate,
  this.userLimit,
  this.voiceConnectionLimit,
  this.permissionOverwrites,
  this.rateLimitPerUser,
  this.nsfw,
  this.nsfwOverride,
  this.contentWarningLevel,
  this.contentWarningText,
  this.icon,
  this.ownerId,
  this.nicks,
  this.rtcRegion,
  this.name,
});