decodeGif function

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

Decode a GIF formatted image.

Implementation

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