enableTextSelection function

void enableTextSelection()

Implementation

void enableTextSelection() {
  final body = web.document.body;
  if (body == null) return;
  body.style.userSelect = '';
  body.style.removeProperty('-webkit-user-select');
}