User constructor

User(
  1. Snowflake _id,
  2. String _username,
  3. String? _globalName,
  4. String? _discriminator,
  5. bool _bot,
  6. bool _system,
  7. List<UserFlagContract> _publicFlags,
  8. List<UserFlagContract> _flags,
  9. UserDecoration _decoration,
  10. String _lang,
  11. PremiumType premiumType,
)

Implementation

User(
  this._id,
  this._username,
  this._globalName,
  this._discriminator,
  this._bot,
  this._system,
  this._publicFlags,
  this._flags,
  this._decoration,
  this._lang,
  this.premiumType
);