copyWith method
NotificationSchemeEventDetails
copyWith({
- NotificationSchemeEventTypeId? event,
- List<
NotificationSchemeNotificationDetails> ? notifications,
Implementation
NotificationSchemeEventDetails copyWith(
{NotificationSchemeEventTypeId? event,
List<NotificationSchemeNotificationDetails>? notifications}) {
return NotificationSchemeEventDetails(
event: event ?? this.event,
notifications: notifications ?? this.notifications,
);
}