AuthUser.cached constructor

AuthUser.cached(
  1. String token,
  2. String id,
  3. String expire,
  4. String credentials,
  5. String role,
  6. String email,
  7. String first_logged,
  8. String? postalCode,
)

Implementation

AuthUser.cached(String token, String id, String expire, String credentials,
    String role, String email, String first_logged, this.postalCode) {
  this.token = token;
  this.id = id;
  this.expire = expire;
  this.credintials = credentials;
  this.role = role;
  this.email = email;
  this.first_logged = first_logged;
}