SentimentScore.fromJson constructor
Implementation
factory SentimentScore.fromJson(Map<String, dynamic> json) {
return SentimentScore(
mixed: json['Mixed'] as double?,
negative: json['Negative'] as double?,
neutral: json['Neutral'] as double?,
positive: json['Positive'] as double?,
);
}