webhookToolApiSchemaConfigInputMethodExplodedListToJson function

String webhookToolApiSchemaConfigInputMethodExplodedListToJson(
  1. List<WebhookToolApiSchemaConfigInputMethod>? webhookToolApiSchemaConfigInputMethod
)

Implementation

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