Property constructor

Property({
  1. String? name,
  2. String? uint64Value,
  3. String? value,
})

Implementation

Property({
  this.name,
  this.uint64Value,
  this.value,
});