fromNative static method

Vector3d fromNative(
  1. Vector3dNative native, {
  2. bool takeOwnership = true,
})

Implementation

static Vector3d fromNative(Vector3dNative native, {bool takeOwnership = true})  {
    return Vector3d(
      native.x,
      native.y,
      native.z,
    );
}