CreateContactOptions constructor

CreateContactOptions({
  1. String? firstName,
  2. String? lastName,
  3. String? company,
  4. List<String>? emailAddresses = const [],
  5. List<String>? tags = const [],
  6. Object? metaData,
  7. bool? optOut,
  8. String? groupId,
})

Returns a new CreateContactOptions instance.

Implementation

CreateContactOptions({
  this.firstName,
  this.lastName,
  this.company,
  this.emailAddresses = const [],
  this.tags = const [],
  this.metaData,
  this.optOut,
  this.groupId,
});