selectFromList static method

int selectFromList(
  1. String title,
  2. List<String> options
)

Arrow-key select — returns chosen index

Implementation

static int selectFromList(String title, List<String> options) {
  print('');
  _sectionTag(title);
  return Select(
    prompt: '',
    options: options,
  ).interact();
}