alertTypeDTOExplodedListToJson function

String alertTypeDTOExplodedListToJson(
  1. List<AlertTypeDTO>? alertTypeDTO
)

Implementation

String alertTypeDTOExplodedListToJson(List<enums.AlertTypeDTO>? alertTypeDTO) {
  return alertTypeDTO?.map((e) => e.value!).join(',') ?? '';
}