fromNative static method
Implementation
static Rectangle fromNative(RectangleNative native, {bool takeOwnership = true}) {
return Rectangle(
native.x,
native.y,
native.width,
native.height,
);
}
static Rectangle fromNative(RectangleNative native, {bool takeOwnership = true}) {
return Rectangle(
native.x,
native.y,
native.width,
native.height,
);
}