terminalTextSize property

String? get terminalTextSize

The persisted terminal text-size preference, or null.

Implementation

String? get terminalTextSize => _kv.read(_termTextKey);
set terminalTextSize (String? value)

Implementation

set terminalTextSize(String? value) =>
    value == null ? _kv.remove(_termTextKey) : _kv.write(_termTextKey, value);