unlink method

  1. @override
bool unlink(
  1. L cell
)
override

Unlinks a previously linked cell

Parameters:

  • link: The cell to unlink

Returns true if unlinking succeeded

Implementation

@override
bool unlink(L cell) {
  return _cell.unlink(cell);
}