clientEventExplodedListToJson function

String clientEventExplodedListToJson(
  1. List<ClientEvent>? clientEvent
)

Implementation

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