sortDirectionDTOExplodedListToJson function

String sortDirectionDTOExplodedListToJson(
  1. List<SortDirectionDTO>? sortDirectionDTO
)

Implementation

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