jSObjectGetPrivate top-level property

Pointer<NativeType> Function(Pointer<NativeType> object) jSObjectGetPrivate
final

Gets an object's private data. object (JSObjectRef) A JSObject whose private data you want to get. @result (void*) A void* that is the object's private data, if the object has private data, otherwise NULL.

Implementation

final Pointer Function(Pointer object) jSObjectGetPrivate = JscFfi.lib
    .lookup<NativeFunction<Pointer Function(Pointer)>>('JSObjectGetPrivate')
    .asFunction();