Oauth2Token constructor

Oauth2Token({
  1. required String access_token,
  2. required String token_type,
  3. required int expires_in,
  4. required String refresh_token,
  5. required String scope,
  6. String? authorization_details,
  7. String? id_token,
})

Implementation

Oauth2Token({
  required this.access_token,
  required this.token_type,
  required this.expires_in,
  required this.refresh_token,
  required this.scope,
  this.authorization_details,
  this.id_token,
});