PaletteUint32 constructor

PaletteUint32(
  1. int numColors,
  2. int numChannels
)

Implementation

PaletteUint32(int numColors, int numChannels)
    : data = Uint32List(numColors * numChannels),
      super(numColors, numChannels);