GuestInfo constructor

GuestInfo({
  1. String? phone,
  2. String? fullName,
  3. String? email,
  4. String? contactId,
  5. bool? newContact,
  6. String? uuid,
  7. String? domain,
  8. String? browser,
  9. String? ip,
  10. String? address,
  11. String? lat,
  12. String? lon,
  13. OtherInfo? otherInfo,
})

Implementation

GuestInfo({
  this.phone,
  this.fullName,
  this.email,
  this.contactId,
  this.newContact,
  this.uuid,
  this.domain,
  this.browser,
  this.ip,
  this.address,
  this.lat,
  this.lon,
  this.otherInfo,
});