AccessToken constructor

AccessToken({
  1. String access_token,
  2. num expires_in,
  3. String id_token,
  4. String refresh_token,
  5. String refresh_token_id,
  6. String scope,
  7. TokenType token_type,
  8. String userId,
})

Implementation

AccessToken(
    {this.access_token,
    this.expires_in,
    this.id_token,
    this.refresh_token,
    this.refresh_token_id,
    this.scope,
    this.token_type,
    this.userId});