closeChildren method

void closeChildren()

Close the children of the menu associated with this MenuController, without closing the menu itself.

Implementation

void closeChildren() {
  assert(_anchor != null);
  _anchor!.closeChildren();
}