void drawImage(Image image, Point p, Paint paint)

Draws the given Image into the canvas with its top-left corner at the given Point. The image is composited into the canvas using the given Paint.

Source

void drawImage(Image image, Point p, Paint paint) {
  _drawImage(image, p.x, p.y, paint._objects, paint._data);
}