enableMouseAllMotion method
Enables mouse all motion tracking (includes hover events).
Implementation
@override
void enableMouseAllMotion() {
if (_mouseEnabled || !supportsAnsi) return;
write(Ansi.mouseEnableNormal);
write(Ansi.mouseEnableAny);
write(Ansi.mouseEnableSgr);
_mouseEnabled = true;
}