SiteContact constructor

SiteContact({
  1. String? address,
  2. String? contactType,
  3. String? email,
  4. String? firstName,
  5. String? id,
  6. String? lastName,
  7. String? phone,
  8. String? title,
})

Implementation

SiteContact({
  this.address,
  this.contactType,
  this.email,
  this.firstName,
  this.id,
  this.lastName,
  this.phone,
  this.title,
});