notifyExecutionError<R> method

FutureOr<R> notifyExecutionError<R>(
  1. Object error,
  2. StackTrace stackTrace, {
  3. TransactionErrorResolver? errorResolver,
  4. Object? operation,
  5. String? debugInfo()?,
})

Implementation

FutureOr<R> notifyExecutionError<R>(Object error, StackTrace stackTrace,
    {TransactionErrorResolver? errorResolver,
    Object? operation,
    String? Function()? debugInfo}) {
  return _onExecutionError<R>(
      error, stackTrace, operation, errorResolver, debugInfo);
}