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