fromNative static method

RouteNode fromNative(
  1. RouteNodeNative native, {
  2. bool takeOwnership = true,
})

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),
    );
}