ref property

Implementation

Pointer<JSPropertyEnumRef> get ref {
  final ptr = calloc.call<JSPropertyEnumRef>(
    length * sizeOf<JSPropertyEnumRef>(),
  );
  for (var i = 0; i < length; i++) {
    ptr[i] = elementAt(i).ref;
  }
  return ptr;
}