set method

Pointer<RectangleC> set(
  1. num x,
  2. num y,
  3. num width,
  4. num height,
)

Implementation

Pointer<RectangleC> set(num x, num y, num width, num height) {
  ref.set(x, y, width, height);
  return this;
}