hasAutoFocus method

bool hasAutoFocus(
  1. String? itemId
)

Returns true if the current item with ID itemId should be auto-focused on menu open.

Implementation

bool hasAutoFocus(String? itemId) =>
    _autoFocusItemId.transform((id) => id == itemId).or(false);