fromOptionalPtr static method
Implementation
static PolygonMapObject? fromOptionalPtr(Pointer<Void> ptr) {
if (ptr.address == 0) return null;
return PolygonMapObject$Impl.fromNativePtr(ptr);
}
static PolygonMapObject? fromOptionalPtr(Pointer<Void> ptr) {
if (ptr.address == 0) return null;
return PolygonMapObject$Impl.fromNativePtr(ptr);
}