decodeContentBinary method

Uint8List? decodeContentBinary()

Decodes the binary data of this part.

Implementation

Uint8List? decodeContentBinary() {
  return mimeData?.decodeBinary(
    _getLowerCaseHeaderValue('content-transfer-encoding'),
  );
}