switchStateV2ExplodedListToJson function

String switchStateV2ExplodedListToJson(
  1. List<SwitchStateV2>? switchStateV2
)

Implementation

String switchStateV2ExplodedListToJson(
    List<enums.SwitchStateV2>? switchStateV2) {
  return switchStateV2?.map((e) => e.value!).join(',') ?? '';
}