GifEncoder constructor

GifEncoder({
  1. int delay = 80,
  2. int repeat = 0,
  3. int samplingFactor = 10,
  4. DitherKernel dither = DitherKernel.FloydSteinberg,
  5. bool ditherSerpentine = false,
})

Implementation

GifEncoder(
    {this.delay = 80,
    this.repeat = 0,
    this.samplingFactor = 10,
    this.dither = DitherKernel.FloydSteinberg,
    this.ditherSerpentine = false})
    : _encodedFrames = 0;