startDecode method
Start decoding the data as an animation sequence, but don't actually process the frames until they are requested with decodeFrame.
Implementation
@override
DecodeInfo? startDecode(List<int> bytes) {
_input = InputBuffer(bytes);
_icoInfo = IcoInfo._read(_input!);
return _icoInfo;
}