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