Sentiment constructor

Sentiment({
  1. double? score,
  2. int? len,
  3. double? negative,
  4. double? positive,
  5. double? neutral,
})

Implementation

Sentiment({
  this.score,
  this.len,
  this.negative,
  this.positive,
  this.neutral,
});