parse static method
Parses a persisted name, defaulting to TerminalTextSize.auto.
Implementation
static TerminalTextSize parse(String? name) => TerminalTextSize.values
.firstWhere((t) => t.name == name, orElse: () => TerminalTextSize.auto);
Parses a persisted name, defaulting to TerminalTextSize.auto.
static TerminalTextSize parse(String? name) => TerminalTextSize.values
.firstWhere((t) => t.name == name, orElse: () => TerminalTextSize.auto);