Property constructor

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

Implementation

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