GoMailerUser constructor

GoMailerUser({
  1. required String email,
  2. String? phone,
  3. String? firstName,
  4. String? lastName,
  5. Map<String, dynamic>? customAttributes,
  6. List<String>? tags,
})

Implementation

GoMailerUser({
  required this.email,
  this.phone,
  this.firstName,
  this.lastName,
  this.customAttributes,
  this.tags,
});