OAuthErrorResponse constructor

OAuthErrorResponse({
  1. String? error,
  2. String? errorDescription,
  3. String? errorUri,
})

Returns a new OAuthErrorResponse instance.

Implementation

OAuthErrorResponse({
  this.error,
  this.errorDescription,
  this.errorUri,
});