getNativeCSIuTerminalDisplayName function
Get display name for a terminal that natively supports CSI u.
Implementation
String? getNativeCSIuTerminalDisplayName() {
final terminal = detectTerminal();
if (terminal == null || !nativeCSIuTerminals.containsKey(terminal)) {
return null;
}
return nativeCSIuTerminals[terminal];
}