fromNative static method
Implementation
static Camera fromNative(CameraNative native, {bool takeOwnership = true}) {
return Camera(
PointImpl.fromNative(native.point, takeOwnership: takeOwnership),
native.zoom,
native.rotation,
native.tilt,
);
}