fromFunctionPointer static method
ObjCBlock<UIBezierPath Function(Pointer<Void> )>
fromFunctionPointer(
- Pointer<
NativeFunction< ptrPointer< >ObjCObject> Function(Pointer<Void> arg0)>
Creates a block from a C function pointer.
This block must be invoked by native code running on the same thread as the isolate that registered it. Invoking the block on the wrong thread will result in a crash.
Implementation
static objc.ObjCBlock<UIBezierPath Function(ffi.Pointer<ffi.Void>)> fromFunctionPointer(
ffi.Pointer<ffi.NativeFunction<ffi.Pointer<objc.ObjCObject> Function(ffi.Pointer<ffi.Void> arg0)>> ptr,
) => objc.ObjCBlock<UIBezierPath Function(ffi.Pointer<ffi.Void>)>(
objc.newPointerBlock(_ObjCBlock_UIBezierPath_ffiVoid_fnPtrCallable, ptr.cast()),
retain: false,
release: true,
);