isSupportedCarrierImage function

bool isSupportedCarrierImage(
  1. Uint8List bytes
)

Returns true when bytes is a supported PNG or JPEG carrier image.

Implementation

bool isSupportedCarrierImage(Uint8List bytes) {
  return isPng(bytes) || isJpeg(bytes);
}