trendV2PathParamExplodedListToJson function

String trendV2PathParamExplodedListToJson(
  1. List<TrendV2PathParam>? trendV2PathParam
)

Implementation

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