TechnicalCueSegment.fromJson constructor
Implementation
factory TechnicalCueSegment.fromJson(Map<String, dynamic> json) {
return TechnicalCueSegment(
confidence: json['Confidence'] as double?,
type: (json['Type'] as String?)?.toTechnicalCueType(),
);
}