AsyncResult<T>.completeWithError constructor
AsyncResult<T>.completeWithError (
- Object error,
- StackTrace stackTrace
Implementation
factory AsyncResult.completeWithError(Object error, StackTrace stackTrace) {
return _Fail(error, stackTrace);
}