error property

DOMExceptionDetails? get error

The DOMException yielded by the remote request, if any.

Implementation

DOMExceptionDetails? get error =>
    _wrapped.error?.let(DOMExceptionDetails.fromJS);
set error (DOMExceptionDetails? v)

Implementation

set error(DOMExceptionDetails? v) {
  _wrapped.error = v?.toJS;
}