AuthErrorScope constructor

const AuthErrorScope({
  1. Key? key,
  2. required ErrorHandler? onAuthError,
  3. TokenErrorHandler? onTokenError,
  4. required Widget child,
})

Implementation

const AuthErrorScope({
  super.key,
  required this.onAuthError,
  this.onTokenError,
  required this.child,
});