WebhookToolApiSchemaConfigInput constructor

const WebhookToolApiSchemaConfigInput({
  1. required String url,
  2. WebhookToolApiSchemaConfigInputMethod? method,
  3. Map<String, dynamic>? pathParamsSchema,
  4. dynamic queryParamsSchema,
  5. dynamic requestBodySchema,
  6. Map<String, dynamic>? requestHeaders,
})

Implementation

const WebhookToolApiSchemaConfigInput({
  required this.url,
  this.method,
  this.pathParamsSchema,
  this.queryParamsSchema,
  this.requestBodySchema,
  this.requestHeaders,
});