fromNative static method

RouteOptions fromNative(
  1. RouteOptionsNative native, {
  2. bool takeOwnership = true,
})

Implementation

static RouteOptions fromNative(RouteOptionsNative native, {bool takeOwnership = true})  {
    return RouteOptions(
      toPlatformFromPointerDouble(native.smoothRadius),
      toPlatformFromPointerDouble(native.maxProjectionDistance),
      toPlatformFromPointerDouble(native.maxAdvance),
    );
}