WordTiming.fromJson constructor
Implementation
factory WordTiming.fromJson(Map<String, dynamic> json) => WordTiming(
word: json['word'] as String,
start: (json['start'] as num).toDouble(),
end: (json['end'] as num).toDouble(),
confidence: json['confidence'] as double?,
);