HttpBody abstract class
A HTTP content body produced by HttpBodyHandler for either HttpRequest or HttpClientResponse.
abstract class HttpBody {
/**
* A high-level type value, that reflects how the body was parsed, e.g.
* "text", "binary" and "json".
*/
String get type;
/**
* The actual body. The type depends on [type].
*/
dynamic get body;
}