ObtainTokenRequest constructor

const ObtainTokenRequest({
  1. required String clientId,
  2. required String clientSecret,
  3. required OAuthGrantType grantType,
  4. String? code,
  5. String? redirectUri,
  6. String? refreshToken,
  7. String? migrationToken,
  8. List<OAuthScope>? scopes,
  9. bool? shortLived,
})

Implementation

const ObtainTokenRequest({
  required this.clientId,
  required this.clientSecret,
  required this.grantType,
  this.code,
  this.redirectUri,
  this.refreshToken,
  this.migrationToken,
  this.scopes,
  this.shortLived,
});