SetGroupCallParticipantIsSpeaking constructor

const SetGroupCallParticipantIsSpeaking({
  1. required int groupCallId,
  2. required int audioSource,
  3. required bool isSpeaking,
})

Informs TDLib that speaking state of a participant of an active group has changed

Implementation

const SetGroupCallParticipantIsSpeaking({
  required this.groupCallId,
  required this.audioSource,
  required this.isSpeaking,
});