pngDecode static method

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

Implementation

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