OAuth constructor

const OAuth({
  1. int? statusCode,
  2. String? accessToken,
  3. int? expiresIn,
  4. String? jti,
  5. String? refreshToken,
  6. String? scope,
  7. String? tokenType,
})

Implementation

const OAuth(
    {this.statusCode,
    this.accessToken,
    this.expiresIn,
    this.jti,
    this.refreshToken,
    this.scope,
    this.tokenType})
    : super();