decodeGifAnimation function
Decode an animated GIF file. If the GIF isn't animated, the animation will contain a single frame with the GIF's image.
Implementation
Animation? decodeGifAnimation(List<int> bytes) =>
GifDecoder().decodeAnimation(bytes);