VoiceState constructor

VoiceState({
  1. String? guildId,
  2. String? channelId,
  3. required String userId,
  4. required Member member,
  5. required String sessionId,
  6. required bool deaf,
  7. required bool mute,
  8. required bool selfDeaf,
  9. required bool selfMute,
  10. bool? selfStream,
  11. required bool selfVideo,
  12. required bool suppress,
})

Implementation

VoiceState({
  this.guildId,
  this.channelId,
  required this.userId,
  required this.member,
  required this.sessionId,
  required this.deaf,
  required this.mute,
  required this.selfDeaf,
  required this.selfMute,
  this.selfStream,
  required this.selfVideo,
  required this.suppress,
});