Contact constructor

Contact({
  1. int? id,
  2. String? name,
  3. dynamic email,
  4. dynamic phoneNumber,
  5. int? accountId,
  6. DateTime? createdAt,
  7. DateTime? updatedAt,
  8. Attributes? additionalAttributes,
  9. String? identifier,
  10. Attributes? customAttributes,
  11. dynamic lastActivityAt,
  12. List? labelList,
})

Implementation

Contact({
  this.id,
  this.name,
  this.email,
  this.phoneNumber,
  this.accountId,
  this.createdAt,
  this.updatedAt,
  this.additionalAttributes,
  this.identifier,
  this.customAttributes,
  this.lastActivityAt,
  this.labelList,
});