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