weatherConditionDTOExplodedListToJson function

String weatherConditionDTOExplodedListToJson(
  1. List<WeatherConditionDTO>? weatherConditionDTO
)

Implementation

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