SentimentResponse.fromJson constructor
Implementation
factory SentimentResponse.fromJson(Map<String, dynamic> json) {
return SentimentResponse(
sentimentLabel: json['sentimentLabel'] as String?,
sentimentScore: json['sentimentScore'] as String?,
);
}