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