weatherTimePeriodV2ExplodedListToJson function

String weatherTimePeriodV2ExplodedListToJson(
  1. List<WeatherTimePeriodV2>? weatherTimePeriodV2
)

Implementation

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