remove method

TaskList remove(
  1. int index
)

Moves the element out of this list and returns it

Implementation

TaskList remove(int index) {
  final address = _api._ffiListTaskListRemove(_box.borrow(), index);
  final reference = _Box(
    _api,
    ffi.Pointer.fromAddress(address),
    "drop_box_TaskList",
  );
  reference._finalizer = _api._registerFinalizer(reference);
  return TaskList._(_api, reference);
}