hasBody property

bool hasBody

Returns true if has body.

Implementation

bool get hasBody {
  var body = _body;
  return body != null && body.size > 0;
}