gifDecode static method

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

Implementation

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