AddNotificationsDetails.fromJson constructor
Implementation
factory AddNotificationsDetails.fromJson(Map<String, Object?> json) {
return AddNotificationsDetails(
notificationSchemeEvents:
(json[r'notificationSchemeEvents'] as List<Object?>?)
?.map((i) => NotificationSchemeEventDetails.fromJson(
i as Map<String, Object?>? ?? const {}))
.toList() ??
[],
);
}