GifDecoder constructor

GifDecoder([
  1. Uint8List? bytes
])

Implementation

GifDecoder([Uint8List? bytes]) {
  if (bytes != null) {
    startDecode(bytes);
  }
}