withSelectAll method
Adds 'A' key binding for select all / clear all.
Implementation
SelectableListPromptBuilder<T> withSelectAll({
String hintDescription = 'select all / clear',
}) {
_wantSelectAll = true;
_selectAllHint = hintDescription;
return this;
}