fromNative static method
Implementation
static RouteNode fromNative(RouteNodeNative native, {bool takeOwnership = true}) {
return RouteNode(
LocationPointImpl.fromNative(native.point, takeOwnership: takeOwnership),
native.weight,
native.distance,
ListRouteEventImpl.fromNativePtr(native.events),
);
}