authExceptionHandler property

  1. @override
set authExceptionHandler (Future<void> handler(AuthorizationException)?)
override

Sets handler that will be called on any AuthorizationException.

Implementation

@override
set authExceptionHandler(
  Future<void> Function(AuthorizationException)? handler,
) {
  Log.debug('set authExceptionHandler(handler)', '$runtimeType');
  _graphQlProvider.authExceptionHandler = handler;
}