notificationTypeDTOExplodedListToJson function
- List<
NotificationTypeDTO> ? notificationTypeDTO
Implementation
String notificationTypeDTOExplodedListToJson(
List<enums.NotificationTypeDTO>? notificationTypeDTO) {
return notificationTypeDTO?.map((e) => e.value!).join(',') ?? '';
}