VoiceChannel constructor

VoiceChannel(
  1. int? _bitrate,
  2. int? _userLimit,
  3. String? _rtcRegion,
  4. int _videoQualityMode,
  5. bool nsfw,
  6. WebhookManager webhooks,
  7. MessageManager messages,
  8. Snowflake? lastMessageId,
  9. Snowflake guildId,
  10. Snowflake? parentId,
  11. String label,
  12. int type,
  13. int? position,
  14. int? flags,
  15. PermissionOverwriteManager? permissions,
  16. Snowflake id,
)

Implementation

VoiceChannel(
  this._bitrate,
  this._userLimit,
  this._rtcRegion,
  this._videoQualityMode,
  super.nsfw,
  super.webhooks,
  super.messages,
  super.lastMessageId,
  super.guildId,
  super.parentId,
  super.label,
  super.type,
  super.position,
  super.flags,
  super.permissions,
  super.id
);