webhookOperationExplodedListToJson function

String webhookOperationExplodedListToJson(
  1. List<WebhookOperation>? webhookOperation
)

Implementation

String webhookOperationExplodedListToJson(
    List<enums.WebhookOperation>? webhookOperation) {
  return webhookOperation?.map((e) => e.value!).join(',') ?? '';
}