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