toNative static method

RectangleNative toNative(
  1. Rectangle obj
)

Implementation

static RectangleNative toNative(Rectangle obj)  {
    return _RectangleNativeInit(
      obj.x,
      obj.y,
      obj.width,
      obj.height,
    );
}