jSPropertyNameArrayGetNameAtIndex top-level property
final
Gets a property name at a given index in a JavaScript property name array.
array
(JSPropertyNameArrayRef) The array from which to retrieve the property name.
index
(size_t) The index of the property name to retrieve.
@result
(JSStringRef) A JSStringRef containing the property name.
Implementation
final Pointer Function(Pointer array, int index)
jSPropertyNameArrayGetNameAtIndex = jscLib
.lookup<NativeFunction<Pointer Function(Pointer, Uint32)>>(
'JSPropertyNameArrayGetNameAtIndex')
.asFunction();