AsyncResult<T>.completeWithError constructor

AsyncResult<T>.completeWithError(
  1. Object error,
  2. StackTrace stackTrace
)

Implementation

factory AsyncResult.completeWithError(Object error, StackTrace stackTrace) {
  return _Fail(error, stackTrace);
}