UtteranceData constructor

UtteranceData({
  1. int? count,
  2. int? distinctUsers,
  3. DateTime? firstUtteredDate,
  4. DateTime? lastUtteredDate,
  5. String? utteranceString,
})

Implementation

UtteranceData({
  this.count,
  this.distinctUsers,
  this.firstUtteredDate,
  this.lastUtteredDate,
  this.utteranceString,
});