fromNative static method

Camera fromNative(
  1. CameraNative native, {
  2. bool takeOwnership = true,
})

Implementation

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