decodeBmp function

Image? decodeBmp(
  1. Uint8List bytes
)

Decode a BMP formatted image.

Implementation

Image? decodeBmp(Uint8List bytes) => BmpDecoder().decode(bytes);