PaletteUint16 constructor

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

Implementation

PaletteUint16(int numColors, int numChannels)
    : data = Uint16List(numColors * numChannels),
      super(numColors, numChannels);