TechnicalCueSegment.fromJson constructor

TechnicalCueSegment.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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