timeRangeDTOExplodedListToJson function

String timeRangeDTOExplodedListToJson(
  1. List<TimeRangeDTO>? timeRangeDTO
)

Implementation

String timeRangeDTOExplodedListToJson(List<enums.TimeRangeDTO>? timeRangeDTO) {
  return timeRangeDTO?.map((e) => e.value!).join(',') ?? '';
}