Guild constructor

Guild(
  1. Snowflake _id,
  2. String _name,
  3. Snowflake _ownerId,
  4. ImageFormater? _icon,
  5. String? _iconHash,
  6. ImageFormater? _splash,
  7. ImageFormater? _discoverySplash,
  8. int? _permissions,
  9. Snowflake? _afkChannelId,
  10. int _afkTimeout,
  11. bool _widgetEnabled,
  12. Snowflake? _widgetChannelId,
  13. VerificationLevel _verificationLevel,
  14. int _defaultMessageNotifications,
  15. int _explicitContentFilter,
  16. GuildRoleManager _roles,
  17. int _mfaLevel,
  18. Snowflake? _applicationId,
  19. Snowflake? _systemChannelId,
  20. int _systemChannelFlags,
  21. Snowflake? _rulesChannelId,
  22. int? _maxPresences,
  23. int _maxMembers,
  24. String? _description,
  25. ImageFormater? _banner,
  26. int _premiumTier,
  27. int _premiumSubscriptionCount,
  28. String _preferredLocale,
  29. Snowflake? _publicUpdatesChannelId,
  30. int _maxVideoChannelUsers,
  31. int? _approximateMemberCount,
  32. int? _approximatePresenceCount,
  33. WelcomeScreen? _welcomeScreen,
  34. int _nsfwLevel,
  35. StickerManager _stickers,
  36. bool _premiumProgressBarEnabled,
  37. MemberManager _members,
  38. ChannelManager _channels,
  39. EmojiManager _emojis,
  40. List<GuildFeature> _features,
  41. ModerationRuleManager _moderationRules,
  42. GuildWebhookManager _webhooks,
  43. GuildScheduledEventService _scheduledEvents,
  44. CommandService _commands,
  45. GuildInviteManager _invites,
)

Implementation

Guild(
  this._id,
  this._name,
  this._ownerId,
  this._icon,
  this._iconHash,
  this._splash,
  this._discoverySplash,
  this._permissions,
  this._afkChannelId,
  this._afkTimeout,
  this._widgetEnabled,
  this._widgetChannelId,
  this._verificationLevel,
  this._defaultMessageNotifications,
  this._explicitContentFilter,
  this._roles,
  this._mfaLevel,
  this._applicationId,
  this._systemChannelId,
  this._systemChannelFlags,
  this._rulesChannelId,
  this._maxPresences,
  this._maxMembers,
  this._description,
  this._banner,
  this._premiumTier,
  this._premiumSubscriptionCount,
  this._preferredLocale,
  this._publicUpdatesChannelId,
  this._maxVideoChannelUsers,
  this._approximateMemberCount,
  this._approximatePresenceCount,
  this._welcomeScreen,
  this._nsfwLevel,
  this._stickers,
  this._premiumProgressBarEnabled,
  this._members,
  this._channels,
  this._emojis,
  this._features,
  this._moderationRules,
  this._webhooks,
  this._scheduledEvents,
  this._commands,
  this._invites,
);