notificationTypeDTOExplodedListToJson function

String notificationTypeDTOExplodedListToJson(
  1. List<NotificationTypeDTO>? notificationTypeDTO
)

Implementation

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