You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 22, 2018. It is now read-only.
_http.get('/i/do/not/exist')
.then((HttpResponse response) {
// don't expect this to be invoked. URL provided is a 404
},
onError: (Object obj) {
print('heavens to betsy! that url was no good!');
});
The log looks like this:
Failed to load resource: the server responded with a status of 404 (Not Found) http://127.0.0.1:3030/i/do/not/exist
Instance of '_XMLHttpRequestProgressEvent@0x3918afae'
STACKTRACE:
null
But the error handler message never prints out in the console, nor does a breakpoint set there get hit.