IdentityNotificationAttributes constructor

IdentityNotificationAttributes({
  1. required String bounceTopic,
  2. required String complaintTopic,
  3. required String deliveryTopic,
  4. required bool forwardingEnabled,
  5. bool? headersInBounceNotificationsEnabled,
  6. bool? headersInComplaintNotificationsEnabled,
  7. bool? headersInDeliveryNotificationsEnabled,
})

Implementation

IdentityNotificationAttributes({
  required this.bounceTopic,
  required this.complaintTopic,
  required this.deliveryTopic,
  required this.forwardingEnabled,
  this.headersInBounceNotificationsEnabled,
  this.headersInComplaintNotificationsEnabled,
  this.headersInDeliveryNotificationsEnabled,
});