copyWith method

Implementation

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