Token constructor

Token({
  1. String? accessToken,
  2. String? tokenType,
  3. String? refreshToken,
  4. String? expiresIn,
  5. String? scope,
  6. String? id,
  7. List<String>? roles,
  8. String? version,
})

Implementation

Token({
  this.accessToken,
  this.tokenType,
  this.refreshToken,
  this.expiresIn,
  this.scope,
  this.id,
  this.roles,
  this.version,
});