UpdateWebhook constructor

UpdateWebhook({
  1. String? name,
  2. String? url,
  3. List<String> events = const [],
  4. String? description,
  5. bool? isActive,
})

Returns a new UpdateWebhook instance.

Implementation

UpdateWebhook({
  this.name,
  this.url,
  this.events = const [],
  this.description,
  this.isActive,
});