fromPointer static method
Implementation
static Point? fromPointer(ffi.Pointer<ffi.Void> ptr,
{core.bool needFree = true}) {
if (ptr == ffi.nullptr) {
return null;
}
final result = PointImpl.fromNative(ptr.cast<PointNative>().ref);
if (needFree) {
malloc.free(ptr);
}
return result;
}