ClientContact constructor

ClientContact({
  1. int? id,
  2. DateTime? dbDateCreated,
  3. DateTime? dbDateUpdated,
  4. ClientContactType? type,
  5. int? $client,
  6. String? firstName,
  7. String? lastName,
  8. String? email,
  9. String? mobile,
  10. String? phone,
  11. String? extension,
  12. String? fax,
  13. String? jobTitle,
})

Implementation

ClientContact({
  this.id,
  this.dbDateCreated,
  this.dbDateUpdated,
  this.type,
  this.$client,
  this.firstName,
  this.lastName,
  this.email,
  this.mobile,
  this.phone,
  this.extension,
  this.fax,
  this.jobTitle,
});