getOptionByIndex method

OPTIONElement? getOptionByIndex(
  1. int index
)

Implementation

OPTIONElement? getOptionByIndex(int index) {
  return index < options.length ? options[index] : null;
}