AttributeDefinition constructor

AttributeDefinition({
  1. String fullName,
  2. String groupName,
  3. AttributeDefinitionGroupTypeEnum groupType,
  4. String name,
  5. String canonicalName,
  6. bool imported,
  7. String semanticType,
  8. String unit,
  9. AttributeDefinitionDataTypeEnum dataType,
  10. DateTime dateCreated,
  11. DateTime dateModified,
})

Returns a new AttributeDefinition instance.

Implementation

AttributeDefinition({
  this.fullName,
  this.groupName,
  this.groupType,
  this.name,
  this.canonicalName,
  this.imported,
  this.semanticType,
  this.unit,
  this.dataType,
  this.dateCreated,
  this.dateModified,
});