decodeContentText method
Decodes the text of this part.
Implementation
String? decodeContentText() {
_decodedText ??= mimeData?.decodeText(
getHeaderContentType(),
_getLowerCaseHeaderValue('content-transfer-encoding'),
);
return _decodedText;
}