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