VoiceTranscriptBubble constructor

const VoiceTranscriptBubble({
  1. Key? key,
  2. required String transcript,
  3. bool isFinal = false,
  4. bool isUser = true,
})

Implementation

const VoiceTranscriptBubble({
  Key? key,
  required this.transcript,
  this.isFinal = false,
  this.isUser = true,
}) : super(key: key);