OAuthCredentials constructor

OAuthCredentials({
  1. required String accessToken,
  2. String? refreshToken,
  3. DateTime? expiration,
  4. List<String>? scopes,
})

Implementation

OAuthCredentials({required this.accessToken, this.refreshToken, this.expiration, this.scopes});