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