Sentiment.fromJson constructor
Implementation
factory Sentiment.fromJson(Map<String, dynamic> json) => Sentiment(
score: json["score"].toDouble(),
len: json["len"],
positive: (json["positive"]).toDouble(),
neutral: (json["neutral"]).toDouble(),
negative: (json["negative"]).toDouble());