AttributeDefinitionEntity constructor

AttributeDefinitionEntity({
  1. String fullName,
  2. int assetModelId,
  3. int attributeDefinitionId,
  4. Model model,
  5. List<AttributeValueEntity> values = const [],
  6. String groupName,
  7. AttributeDefinitionEntityGroupTypeEnum groupType,
  8. String name,
  9. String canonicalName,
  10. bool imported,
  11. String semanticType,
  12. String unit,
  13. AttributeDefinitionEntityDataTypeEnum dataType,
  14. DateTime dateCreated,
  15. DateTime dateModified,
})

Returns a new AttributeDefinitionEntity instance.

Implementation

AttributeDefinitionEntity({
  this.fullName,
  this.assetModelId,
  this.attributeDefinitionId,
  this.model,
  this.values = const [],
  this.groupName,
  this.groupType,
  this.name,
  this.canonicalName,
  this.imported,
  this.semanticType,
  this.unit,
  this.dataType,
  this.dateCreated,
  this.dateModified,
});