Webhook constructor

Webhook({
  1. required String $id,
  2. required String $createdAt,
  3. required String $updatedAt,
  4. required String name,
  5. required String url,
  6. required List<String> events,
  7. required bool security,
  8. required String httpUser,
  9. required String httpPass,
  10. required String signatureKey,
  11. required bool enabled,
  12. required String logs,
  13. required int attempts,
})

Implementation

Webhook({
  required this.$id,
  required this.$createdAt,
  required this.$updatedAt,
  required this.name,
  required this.url,
  required this.events,
  required this.security,
  required this.httpUser,
  required this.httpPass,
  required this.signatureKey,
  required this.enabled,
  required this.logs,
  required this.attempts,
});