decodeContentText method

String? decodeContentText()

Decodes the text of this part.

Implementation

String? decodeContentText() {
  _decodedText ??= mimeData?.decodeText(
    getHeaderContentType(),
    _getLowerCaseHeaderValue('content-transfer-encoding'),
  );
  return _decodedText;
}