convertBGRA8888ToImage static method
Implementation
static Image convertBGRA8888ToImage(int width, int height, Uint8List bytes) {
return Image.fromBytes(
width: width,
height: height,
bytes: bytes.buffer,
order: ChannelOrder.bgra,
);
}