showWordSize property Null safety

bool showWordSize

Should we show the word size annunciator on the display?

Implementation

bool get showWordSize => _showWordSize;
void showWordSize=(bool v)

Implementation

set showWordSize(bool v) {
  _showWordSize = v;
  _model.needsSave = true;
}