jpegDecode static method

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

Implementation

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