onError property

OnData<TParsed>? onError

Implementation

OnData<TParsed>? get onError {
  if (options.onError != null) {
    return (QueryResult? result) {
      if (!result!.isLoading &&
          result.hasException &&
          options.errorPolicy != ErrorPolicy.ignore) {
        return options.onError!(result.exception);
      }
    };
  }

  return null;
}