exportFileTypeDTOExplodedListToJson function

String exportFileTypeDTOExplodedListToJson(
  1. List<ExportFileTypeDTO>? exportFileTypeDTO
)

Implementation

String exportFileTypeDTOExplodedListToJson(
    List<enums.ExportFileTypeDTO>? exportFileTypeDTO) {
  return exportFileTypeDTO?.map((e) => e.value!).join(',') ?? '';
}