ImageDataInt16.from constructor

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

Implementation

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