SecondLoginModel constructor

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

Implementation

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