Invite constructor

Invite(
  1. int _type,
  2. int _uses,
  3. bool _temporary,
  4. int _maxUses,
  5. int _maxAge,
  6. Snowflake? _inviterId,
  7. Snowflake? _targetUserId,
  8. Snowflake? _guildId,
  9. String? _expiresAt,
  10. String _createdAt,
  11. String _code,
  12. Snowflake? _channelId,
  13. int? _targetType,
)

Implementation

Invite(
  this._type,
  this._uses,
  this._temporary,
  this._maxUses,
  this._maxAge,
  this._inviterId,
  this._targetUserId,
  this._guildId,
  this._expiresAt,
  this._createdAt,
  this._code,
  this._channelId,
  this._targetType,
);