isValidFile method

  1. @override
bool isValidFile(
  1. Uint8List bytes
)
override

Is the given file a valid Gif image?

Implementation

@override
bool isValidFile(Uint8List bytes) {
  _input = InputBuffer(bytes);
  info = GifInfo();
  return _getInfo();
}