ImageDataInt8.from constructor

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

Implementation

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