bmpDecode static method

Image? bmpDecode(
  1. Uint8List bytes, {
  2. int? frame,
})

Implementation

static img.Image? bmpDecode(Uint8List bytes, {int? frame}) =>
    (img.BmpDecoder()).decode(bytes, frame: frame);