OAuthException constructor

OAuthException({
  1. required String error,
  2. String? errorDescription,
  3. String? errorURI,
  4. String? state,
})

Implementation

OAuthException({
  required this.error,
  this.errorDescription,
  this.errorURI,
  this.state,
}) : super(null);