MicrosoftTokenResponse constructor

const MicrosoftTokenResponse({
  1. required String tokenType,
  2. required int expiresIn,
  3. required String scope,
  4. required String accessToken,
  5. required String refreshToken,
  6. String? userId,
})

Implementation

const MicrosoftTokenResponse({
  required this.tokenType,
  required this.expiresIn,
  required this.scope,
  required this.accessToken,
  required this.refreshToken,
  this.userId,
});