toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final confidence = this.confidence;
final endTime = this.endTime;
final speakerLabel = this.speakerLabel;
final speakerTag = this.speakerTag;
final startTime = this.startTime;
final word = this.word;
return {
'confidence': ?confidence,
'endTime': ?endTime,
'speakerLabel': ?speakerLabel,
'speakerTag': ?speakerTag,
'startTime': ?startTime,
'word': ?word,
};
}