copyWith method
Notification
copyWith({
- String? htmlBody,
- NotificationRecipientsRestrictions? restrict,
- String? subject,
- String? textBody,
- NotificationRecipients? to,
Implementation
Notification copyWith(
{String? htmlBody,
NotificationRecipientsRestrictions? restrict,
String? subject,
String? textBody,
NotificationRecipients? to}) {
return Notification(
htmlBody: htmlBody ?? this.htmlBody,
restrict: restrict ?? this.restrict,
subject: subject ?? this.subject,
textBody: textBody ?? this.textBody,
to: to ?? this.to,
);
}