body property

String get body

Implementation

String get body {
  if (_body.isEmpty) {
    _bodyFucked = true;
    return 'BROKEN_BODY';
  }
  try {
    var t = utf8.decode(_body);
    return t.trim();
  } catch (e) {
    _bodyFucked = true;
    return 'BROKEN_UTF8';
  }
}