LoginResponseModel constructor

LoginResponseModel({
  1. String? accessToken,
  2. int? expiresIn,
  3. int? refreshExpiresIn,
  4. String? refreshToken,
  5. String? tokenType,
  6. int? notBeforePolicy,
  7. String? sessionState,
  8. String? scope,
})

Implementation

LoginResponseModel({
  this.accessToken,
  this.expiresIn,
  this.refreshExpiresIn,
  this.refreshToken,
  this.tokenType,
  this.notBeforePolicy,
  this.sessionState,
  this.scope,
});