focusNext method
void
focusNext()
Implementation
void focusNext() {
if (focusedIndex.value < options.length - 1) {
focusedIndex.value++;
}
}
void focusNext() {
if (focusedIndex.value < options.length - 1) {
focusedIndex.value++;
}
}