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