enableMouseCellMotion method
Enables mouse cell motion tracking (clicks, wheel, drag).
Implementation
@override
void enableMouseCellMotion() {
if (_mouseEnabled || !supportsAnsi) return;
write(Ansi.mouseEnableNormal);
write(Ansi.mouseEnableButton);
write(Ansi.mouseEnableSgr);
_mouseEnabled = true;
}