peripheralV2PathParamExplodedListToJson function

String peripheralV2PathParamExplodedListToJson(
  1. List<PeripheralV2PathParam>? peripheralV2PathParam
)

Implementation

String peripheralV2PathParamExplodedListToJson(
    List<enums.PeripheralV2PathParam>? peripheralV2PathParam) {
  return peripheralV2PathParam?.map((e) => e.value!).join(',') ?? '';
}