terminalGraphicsSuppressesCursorMovement function
Whether value displays graphics while suppressing terminal cursor motion.
Implementation
bool terminalGraphicsSuppressesCursorMovement(String value) {
for (final control in parseTerminalGraphicsControls(value)) {
if (control.displaysWithoutCursorMovement) return true;
}
return false;
}