TypedValue constructor

TypedValue({
  1. bool? boolValue,
  2. Distribution? distributionValue,
  3. double? doubleValue,
  4. String? int64Value,
  5. String? stringValue,
})

Implementation

TypedValue({
  this.boolValue,
  this.distributionValue,
  this.doubleValue,
  this.int64Value,
  this.stringValue,
});