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