GifColorMap.from constructor

GifColorMap.from(
  1. GifColorMap other
)

Implementation

GifColorMap.from(GifColorMap other)
  : bitsPerPixel = other.bitsPerPixel
  , numColors = other.numColors
  , transparent = other.transparent
  , colors = Uint8List.fromList(other.colors);