manageEvent method

bool manageEvent(
  1. KeyEvent event
)

Implementation

bool manageEvent(KeyEvent event) {
  if (cursor.anchorId == '') {
    cursor.anchorId = content.id;
    cursor.focusId = content.id;
  }
  return _eventHandler.handle(event, this);
}