body property
String
get
body
Use this to get the body.
Implementation
String get body {
if (redacted) return 'Redacted';
if (text != '') return text;
if (formattedText != '') return formattedText;
return type;
}