terminalCustomCols property

int? get terminalCustomCols

The persisted custom column count, or null.

Implementation

int? get terminalCustomCols => int.tryParse(_kv.read(_termColsKey) ?? '');
set terminalCustomCols (int? value)

Implementation

set terminalCustomCols(int? value) => value == null
    ? _kv.remove(_termColsKey)
    : _kv.write(_termColsKey, '$value');