copyWith method

AddNotificationsDetails copyWith({
  1. List<NotificationSchemeEventDetails>? notificationSchemeEvents,
})

Implementation

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