hideKeyboard method

void hideKeyboard()

关闭键盘

Implementation

void hideKeyboard() {
  for (final node in nodeList) {
    if (node.hasFocus) node.unfocus();
  }
}