remove method
- int index
Moves the element out of this list and returns it
Implementation
UserProfile remove(int index) {
final address = _api._ffiListUserProfileRemove(_box.borrow(), index);
final reference =
_Box(_api, ffi.Pointer.fromAddress(address), "drop_box_UserProfile");
reference._finalizer = _api._registerFinalizer(reference);
return UserProfile._(_api, reference);
}