Attributes constructor

Attributes({
  1. String? accessToken,
  2. String? email,
  3. String? expiry,
  4. String? provider,
  5. String? refreshToken,
  6. List<String>? roles,
  7. bool? verified,
})

Implementation

Attributes(
    {this.accessToken,
      this.email,
      this.expiry,
      this.provider,
      this.refreshToken,
      this.roles,
      this.verified});