copyWith method
AddNotificationsDetails
copyWith({
- List<
NotificationSchemeEventDetails> ? notificationSchemeEvents,
Implementation
AddNotificationsDetails copyWith(
{List<NotificationSchemeEventDetails>? notificationSchemeEvents}) {
return AddNotificationsDetails(
notificationSchemeEvents:
notificationSchemeEvents ?? this.notificationSchemeEvents,
);
}