SentimentScore constructor

SentimentScore({
  1. double? mixed,
  2. double? negative,
  3. double? neutral,
  4. double? positive,
})

Implementation

SentimentScore({
  this.mixed,
  this.negative,
  this.neutral,
  this.positive,
});