jSValueMakeNull top-level property

Pointer<NativeType> Function(Pointer<NativeType> ctx) jSValueMakeNull
final

Creates a JavaScript value of the null type. ctx (JSContextRef) The execution context to use. @result (JSValueRef) The unique null value.

Implementation

final Pointer Function(Pointer ctx) jSValueMakeNull = JscFfi.lib
    .lookup<NativeFunction<Pointer Function(Pointer)>>('JSValueMakeNull')
    .asFunction();