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