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