weatherConditionV2ExplodedListToJson function

String weatherConditionV2ExplodedListToJson(
  1. List<WeatherConditionV2>? weatherConditionV2
)

Implementation

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