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