decodeText method
Decodes the text represented by the mime data
Implementation
@override
String decodeText(
ContentTypeHeader? contentTypeHeader,
String? contentTransferEncoding,
) =>
_bodyStartIndex == null
? ''
: MailCodec.decodeAsText(
_bodyData,
contentTransferEncoding,
contentTypeHeader?.charset,
);