OAuth2Token constructor

const OAuth2Token({
  1. required String accessToken,
  2. String? tokenType = 'bearer',
  3. int? expiresIn,
  4. String? refreshToken,
  5. String? scope,
})

{macro oauth2_token}

Implementation

const OAuth2Token({
  required this.accessToken,
  this.tokenType = 'bearer',
  this.expiresIn,
  this.refreshToken,
  this.scope,
});