User constructor

User(
  1. int id,
  2. String username,
  3. String password,
  4. String name,
  5. String token,
  6. int roleid,
  7. int expire,
)

Implementation

User(this.id, this.username, this.password, this.name, this.token,
    this.roleid, this.expire);