LabelValue constructor

LabelValue({
  1. bool? boolValue,
  2. String? int64Value,
  3. String? stringValue,
})

Implementation

LabelValue({
  this.boolValue,
  this.int64Value,
  this.stringValue,
});