TranslationSubscribedData constructor

TranslationSubscribedData({
  1. required String speakerId,
  2. String? speakerName,
  3. required String language,
  4. required bool channelCreated,
  5. String? producerId,
  6. String? originalProducerId,
})

Implementation

TranslationSubscribedData({
  required this.speakerId,
  this.speakerName,
  required this.language,
  required this.channelCreated,
  this.producerId,
  this.originalProducerId,
});