WebhookTestResponse constructor

WebhookTestResponse({
  1. int? statusCode,
  2. String? message,
})

Returns a new WebhookTestResponse instance.

Implementation

WebhookTestResponse({
  this.statusCode,
  this.message,
});