Chooser<T> constructor

Chooser<T>(
  1. List<T> choices, {
  2. String message = 'Choice: ',
  3. ChooserEntryFormatter<T> formatter = _defaultFormatter,
})

Implementation

Chooser(this.choices,
    {this.message = 'Choice: ', this.formatter = _defaultFormatter});