jSPropertyNameArrayGetNameAtIndex top-level property
          
          Pointer<NativeType>  Function(Pointer<NativeType>  array, int index)
          jSPropertyNameArrayGetNameAtIndex
          
        
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 = JscFfi.lib
        .lookup<NativeFunction<Pointer Function(Pointer, Uint32)>>(
            'JSPropertyNameArrayGetNameAtIndex')
        .asFunction();