ContactEntity constructor

ContactEntity({
  1. int contactId,
  2. int entityAssetModelId,
  3. int entityId,
  4. DateTime dateCreated,
  5. DateTime dateModified,
  6. ContactEntityRoleEnum role,
  7. String entityExternalIdentifier,
  8. String entityName,
  9. String entityDescription,
  10. RelatedEntity entity,
})

Returns a new ContactEntity instance.

Implementation

ContactEntity({
  this.contactId,
  this.entityAssetModelId,
  this.entityId,
  this.dateCreated,
  this.dateModified,
  this.role,
  this.entityExternalIdentifier,
  this.entityName,
  this.entityDescription,
  this.entity,
});