Contact constructor

Contact({
  1. String? emailAddress,
  2. DateTime? lastUpdatedTimestamp,
  3. List<TopicPreference>? topicDefaultPreferences,
  4. List<TopicPreference>? topicPreferences,
  5. bool? unsubscribeAll,
})

Implementation

Contact({
  this.emailAddress,
  this.lastUpdatedTimestamp,
  this.topicDefaultPreferences,
  this.topicPreferences,
  this.unsubscribeAll,
});