ImageDataInt32.from constructor

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

Implementation

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