StatisticValue constructor

StatisticValue({
  1. double? doubleValue,
  2. double? floatValue,
  3. String? intValue,
  4. StringList? stringList,
  5. String? stringValue,
})

Implementation

StatisticValue({
  this.doubleValue,
  this.floatValue,
  this.intValue,
  this.stringList,
  this.stringValue,
});