RealtimeTranslationError constructor

const RealtimeTranslationError({
  1. required String type,
  2. required String message,
  3. String? code,
  4. String? eventId,
  5. String? param,
})

Implementation

const RealtimeTranslationError({
  required this.type,
  required this.message,
  this.code,
  this.eventId,
  this.param,
});