ContactProjection constructor

ContactProjection({
  1. required String id,
  2. String? groupId,
  3. String? emailAddress,
  4. required DateTime createdAt,
  5. String? firstName,
  6. String? lastName,
  7. String? company,
  8. List<String>? emailAddresses = const [],
  9. required bool optOut,
})

Returns a new ContactProjection instance.

Implementation

ContactProjection({
  required this.id,
  this.groupId,
  this.emailAddress,
  required this.createdAt,
  this.firstName,
  this.lastName,
  this.company,
  this.emailAddresses = const [],
  required this.optOut,
});