fromNative static method
Implementation
static LocationPoint fromNative(LocationPointNative native, {bool takeOwnership = true}) {
return LocationPoint(
PointImpl.fromNative(native.point, takeOwnership: takeOwnership),
native.locationId,
native.sublocationId,
);
}