jSValueMakeUndefined top-level property

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

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

Implementation

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