Property constructor

Property({
  1. String name = '',
  2. Property_PropertyType type = Property_PropertyType.$default,
  3. String description = '',
})

Implementation

Property({
  this.name = '',
  this.type = Property_PropertyType.$default,
  this.description = '',
}) : super(fullyQualifiedName);