User constructor

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

Implementation

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