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