fromNative static method

GlobalPoint fromNative(
  1. GlobalPointNative native, {
  2. bool takeOwnership = true,
})

Implementation

static GlobalPoint fromNative(GlobalPointNative native, {bool takeOwnership = true})  {
    return GlobalPoint(
      native.latitude,
      native.longitude,
    );
}