CallClosedCaption constructor

CallClosedCaption({
  1. required DateTime endTime,
  2. required String speakerId,
  3. required DateTime startTime,
  4. required String text,
})

Returns a new CallClosedCaption instance.

Implementation

CallClosedCaption({
  required this.endTime,
  required this.speakerId,
  required this.startTime,
  required this.text,
});