handleDownKey method
Provides the default implementation if parent class mixes in KeyboardHandlerMixin.
Implementation
void handleDownKey(KeyboardEvent event) {
_trigger(const ExpandAction.withFirstItemFocused());
// Prevent the scrolling associated with arrow keys.
event.preventDefault();
}