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
Describe what scenario you think is uncovered by the existing examples/articles
In the home.dart file the .when error case doesn't handle DioError, for example doing this:
if (err is DioError) {
return Text(err.message);
}
Describe why existing examples/articles do not cover this case
For now you are doing the following which will just print "Instance of..."
Describe what scenario you think is uncovered by the existing examples/articles
In the
home.dart
file the.when
error case doesn't handle DioError, for example doing this:Describe why existing examples/articles do not cover this case
For now you are doing the following which will just print "Instance of..."
The text was updated successfully, but these errors were encountered: