NotificationSettingsDTO constructor

NotificationSettingsDTO({
  1. bool? suppressDefaultNotifications,
  2. MemberNotificationOverrideDTO? notificationOverrideEmail,
  3. MemberNotificationOverrideDTO? notificationOverrideAppPush,
})

Returns a new NotificationSettingsDTO instance.

Implementation

NotificationSettingsDTO({
  this.suppressDefaultNotifications,
  this.notificationOverrideEmail,
  this.notificationOverrideAppPush,
});