clientEventExplodedListToJson function
Implementation
String clientEventExplodedListToJson(List<enums.ClientEvent>? clientEvent) {
return clientEvent?.map((e) => e.value!).join(',') ?? '';
}
String clientEventExplodedListToJson(List<enums.ClientEvent>? clientEvent) {
return clientEvent?.map((e) => e.value!).join(',') ?? '';
}