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