handlePopupTriggerAction method

void handlePopupTriggerAction(
  1. UIEvent event
)

Implementation

void handlePopupTriggerAction(UIEvent event) {
  if (event is KeyboardEvent) {
    _trigger(const ExpandAction.withFirstItemFocused());
  } else {
    _trigger(const ExpandAction.withNoFocus());
  }
}