OAuth2PkceTokenResponse constructor

const OAuth2PkceTokenResponse({
  1. required String accessToken,
  2. String? refreshToken,
  3. int? expiresIn,
  4. Map<String, dynamic> raw = const {},
})

Creates a new OAuth2PkceTokenResponse.

Implementation

const OAuth2PkceTokenResponse({
  required this.accessToken,
  this.refreshToken,
  this.expiresIn,
  this.raw = const {},
});