Credential constructor

Credential(
  1. String accessToken,
  2. String refreshToken,
  3. String idToken,
  4. String tokenEndpoint,
  5. List<String> scopes,
  6. int expiration,
)

Implementation

Credential(this.accessToken, this.refreshToken, this.idToken,
    this.tokenEndpoint, this.scopes, this.expiration);