setCell method
Set the cell to which this cell points to.
After this is called, value returns the value of cell
and the
observers of this
are notified when the value of cell
changes.
NOTE: This cell must have at least one observer before calling this method, otherwise InactiveMetaCelLError is thrown.
Implementation
@override
void setCell(covariant MutableCell<T> cell) {
super.setCell(cell);
}