ImageDataUint32.from constructor

ImageDataUint32.from(
  1. ImageDataUint32 other, {
  2. bool skipPixels = false,
})

Implementation

ImageDataUint32.from(ImageDataUint32 other, {bool skipPixels = false})
    : data = skipPixels
          ? Uint32List(other.data.length)
          : Uint32List.fromList(other.data),
      super(other.width, other.height, other.numChannels);