toString method Null safety
override
Returns a string representation of this object.
Implementation
String toString() {
var b = new StringBuffer()..write('HttpException: ')..write(message);
var uri = this.uri;
if (uri != null) {
b.write(', uri = $uri');
}
return b.toString();
}