SelectedOptions<T extends Object> constructor

SelectedOptions<T extends Object>(
  1. List<PairOption<T>> options, {
  2. String? description,
  3. bool single = false,
})

Implementation

new(List<PairOption<T>> options, {this.description, this.single = false})
  : options = List.unmodifiable(options),
    required = false;