resetToEmptyCell method

void resetToEmptyCell()

Resets this cell to a canonical empty space cell.

Implementation

void resetToEmptyCell() {
  _releaseLink();
  _releasePooledContent();
  _style = const UvStyle();
  _styleId = 0;
  _link = const Link();
  _linkId = 0;
  drawable = null;
  _width = 1;
  _contentKind = _CellContentKind.space;
  _contentValue = 0;
}