decodeGifFile function

Future<Image?> decodeGifFile(
  1. String path,
  2. {int? frame}
)

Decode a GIF formatted image from a file. If the platform does not support dart:io, null will be returned.

Implementation

Future<Image?> decodeGifFile(String path, {int? frame}) async {
  final bytes = await readFile(path);
  if (bytes == null) {
    return null;
  }
  return GifDecoder().decode(bytes, frame: frame);
}