CaptionData constructor

CaptionData({
  1. required String text,
  2. required String speechEventType,
  3. required String participantIdentity,
  4. required String language,
  5. required double confidence,
})

Implementation

CaptionData({
  required this.text,
  required this.speechEventType,
  required this.participantIdentity,
  required this.language,
  required this.confidence,
});