ConsentRequiredResponse constructor

ConsentRequiredResponse({
  1. bool? consentRequired,
  2. ConsentRequiredResponseClient? client,
  3. List<String> scopes = const [],
  4. String? redirectUri,
  5. String? state,
})

Returns a new ConsentRequiredResponse instance.

Implementation

ConsentRequiredResponse({
  this.consentRequired,
  this.client,
  this.scopes = const [],
  this.redirectUri,
  this.state,
});