Webhook constructor

Webhook(
  1. dynamic id,
  2. dynamic createdAt,
  3. dynamic updatedAt,
  4. dynamic objectType,
  5. dynamic mode,
  6. DateTime? disabledAt,
  7. String? url
)

Implementation

Webhook(
  id,
  createdAt,
  updatedAt,
  objectType,
  mode,
  this.disabledAt,
  this.url,
) : super(id, createdAt, updatedAt, objectType, mode);