aggregationTypeDTOExplodedListToJson function

String aggregationTypeDTOExplodedListToJson(
  1. List<AggregationTypeDTO>? aggregationTypeDTO
)

Implementation

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