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