selectFromList static method
Arrow-key select — returns chosen index
Implementation
static int selectFromList(String title, List<String> options) {
print('');
_sectionTag(title);
return Select(
prompt: '',
options: options,
).interact();
}