AuthorizationCodeResponse constructor

const AuthorizationCodeResponse({
  1. required String accessToken,
  2. required String tokenType,
  3. required int expiresIn,
  4. required List<BattleNetScope> scope,
  5. required String sub,
  6. required String idToken,
})

Creates an instance of AuthorizationCodeResponse.

All fields are required.

Implementation

const AuthorizationCodeResponse({
  required this.accessToken,
  required this.tokenType,
  required this.expiresIn,
  required this.scope,
  required this.sub,
  required this.idToken,
});