Webhook constructor

const Webhook({
  1. String? id,
  2. required String url,
  3. required List<EventType> eventTypes,
  4. List<LinkDescription>? links,
})

Implementation

const Webhook({
  this.id,
  required this.url,
  required this.eventTypes,
  this.links,
});