handleDownKey method

void handleDownKey(
  1. KeyboardEvent event
)

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