drawImage method

void drawImage(
  1. Object image,
  2. num sx,
  3. num sy,
  4. num sw,
  5. num sh,
  6. num dx,
  7. num dy,
  8. num dw,
  9. num dh,
)

Implementation

void drawImage(
  _i2.Object image,
  _i2.num sx,
  _i2.num sy,
  _i2.num sw,
  _i2.num sh,
  _i2.num dx,
  _i2.num dy,
  _i2.num dw,
  _i2.num dh,
) {
  _i4.callMethod(
    this,
    'drawImage',
    [
      image,
      sx,
      sy,
      sw,
      sh,
      dx,
      dy,
      dw,
      dh,
    ],
  );
}