trendPathParamExplodedListToJson function

String trendPathParamExplodedListToJson(
  1. List<TrendPathParam>? trendPathParam
)

Implementation

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