GifEncoder constructor

GifEncoder({
  1. int delay = 80,
  2. int repeat = 0,
  3. int numColors = 256,
  4. QuantizerType quantizerType = QuantizerType.neural,
  5. int samplingFactor = 10,
  6. DitherKernel dither = DitherKernel.floydSteinberg,
  7. bool ditherSerpentine = false,
})

Implementation

GifEncoder(
    {this.delay = 80,
    this.repeat = 0,
    this.numColors = 256,
    this.quantizerType = QuantizerType.neural,
    this.samplingFactor = 10,
    this.dither = DitherKernel.floydSteinberg,
    this.ditherSerpentine = false})
    : _encodedFrames = 0;