Webhook constructor

Webhook({
  1. required String id,
  2. required int type,
  3. String? guildId,
  4. required String channelId,
  5. User? user,
  6. String? name,
  7. String? avatar,
  8. String? applicationId,
})

Implementation

Webhook({
  required this.id,
  required this.type,
  this.guildId,
  required this.channelId,
  this.user,
  this.name,
  this.avatar,
  this.applicationId,
});