GuildPreview constructor

GuildPreview(
  1. Snowflake _id,
  2. String _label,
  3. String? _description,
  4. String? _icon,
  5. String? _splash,
  6. String? _discoverySplash,
  7. Map<Snowflake, Emoji> _emojis,
  8. Map<Snowflake, Sticker> _stickers,
  9. List<GuildFeature> _features,
  10. int _approximateMemberCount,
  11. int _approximatePresenceCount,
)

Implementation

GuildPreview(
  this._id,
  this._label,
  this._description,
  this._icon,
  this._splash,
  this._discoverySplash,
  this._emojis,
  this._stickers,
  this._features,
  this._approximateMemberCount,
  this._approximatePresenceCount,
);