GifColorMap.from constructor

GifColorMap.from(
  1. GifColorMap other
)

Implementation

GifColorMap.from(GifColorMap other)
    : bitsPerPixel = other.bitsPerPixel,
      numColors = other.numColors,
      transparent = other.transparent,
      _palette = PaletteUint8.from(other._palette);