TopicTrends constructor

TopicTrends({
  1. String? customerCountryCode,
  2. Date? date,
  3. double? last120DaysSearchInterest,
  4. double? last30DaysSearchInterest,
  5. double? last7DaysSearchInterest,
  6. double? last90DaysSearchInterest,
  7. double? next7DaysSearchInterest,
  8. double? searchInterest,
  9. String? topic,
})

Implementation

TopicTrends({
  this.customerCountryCode,
  this.date,
  this.last120DaysSearchInterest,
  this.last30DaysSearchInterest,
  this.last7DaysSearchInterest,
  this.last90DaysSearchInterest,
  this.next7DaysSearchInterest,
  this.searchInterest,
  this.topic,
});