HSBeaconUser constructor

HSBeaconUser({
  1. required String email,
  2. String? name,
  3. String? company,
  4. String? jobTitle,
  5. String? avatar,
  6. Map<Object?, Object?>? attributes,
})

Implementation

HSBeaconUser({
  required this.email,
  this.name,
  this.company,
  this.jobTitle,
  this.avatar,
  this.attributes,
});