showWordSize property Null safety
Should we show the word size annunciator on the display?
Implementation
bool get showWordSize => _showWordSize;
Implementation
set showWordSize(bool v) {
_showWordSize = v;
_model.needsSave = true;
}
Should we show the word size annunciator on the display?
bool get showWordSize => _showWordSize;
set showWordSize(bool v) {
_showWordSize = v;
_model.needsSave = true;
}