putPixels method

void putPixels(
  1. PCanvasPixels src,
  2. num dstX,
  3. num dstY
)

Implementation

void putPixels(PCanvasPixels src, num dstX, num dstY) => setPixelsRectFrom(
    src, 0, 0, dstX.toInt(), dstY.toInt(), src.width, src.height);