disableTextSelection function
void
disableTextSelection()
Implementation
void disableTextSelection() {
final body = web.document.body;
if (body == null) return;
body.style.userSelect = 'none';
body.style.setProperty('-webkit-user-select', 'none');
}