VisitorProperties constructor

VisitorProperties({
  1. String? email,
  2. String? name,
  3. String? city,
  4. String? country,
  5. String? phone,
})

Implementation

VisitorProperties({
  this.email,
  this.name,
  this.city,
  this.country,
  this.phone,
});