Webhook constructor

Webhook(
  1. Snowflake _id,
  2. int _type,
  3. Snowflake? _guildId,
  4. Snowflake? _channelId,
  5. Snowflake? _creatorId,
  6. String? _label,
  7. String? _avatar,
  8. String _token,
  9. Snowflake? _applicationId,
  10. String? _url,
  11. SourceChannel? _sourceChannel,
  12. SourceGuild? _sourceGuild,
)

Implementation

Webhook(
  this._id,
  this._type,
  this._guildId,
  this._channelId,
  this._creatorId,
  this._label,
  this._avatar,
  this._token,
  this._applicationId,
  this._url,
  this._sourceChannel,
  this._sourceGuild,
);