restoreState abstract method

void restoreState(
  1. Object? state,
  2. CellValueCoder coder
)

Restore the state of the cell.

state is a value, previously returned by dumpState, encoding the state of the cell. This method should restored the state of the cell to the state described by state

coder is the CellValueCoder object which should be used for decoding the cell's value.

Implementation

void restoreState(Object? state, CellValueCoder coder);