ListWebhookItem constructor

ListWebhookItem({
  1. required WebhookDefinition definition,
  2. required String url,
  3. String? arn,
  4. String? errorCode,
  5. String? errorMessage,
  6. DateTime? lastTriggered,
  7. List<Tag>? tags,
})

Implementation

ListWebhookItem({
  required this.definition,
  required this.url,
  this.arn,
  this.errorCode,
  this.errorMessage,
  this.lastTriggered,
  this.tags,
});