add method

void add(
  1. SpaceHierarchyRoomInfo element
)

The inserted element is moved into the list and must not be used again Although you can use the "elementAt" method to get a reference to the added element

Implementation

void add(SpaceHierarchyRoomInfo element) {
  _api._ffiListSpaceHierarchyRoomInfoAdd(
    _box.borrow(),
    element._box.borrow(),
  );
  element._box.move();
}