VisitorInfo constructor

VisitorInfo({
  1. String? name,
  2. String? email,
  3. String? phone,
  4. String? note,
  5. String? externalId,
  6. required Map<String, String> customAttributes,
  7. required bool banned,
})

Implementation

VisitorInfo({
  this.name,
  this.email,
  this.phone,
  this.note,
  this.externalId,
  required this.customAttributes,
  required this.banned,
});