handleUpKey method

void handleUpKey(
  1. KeyboardEvent event
)

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();
}