webhookToolApiSchemaConfigOutputMethodExplodedListToJson function

String webhookToolApiSchemaConfigOutputMethodExplodedListToJson(
  1. List<WebhookToolApiSchemaConfigOutputMethod>? webhookToolApiSchemaConfigOutputMethod
)

Implementation

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