Select constructor

Select({
  1. required String prompt,
  2. required List<String> options,
  3. int initialIndex = 0,
})

Constructs a Select component with the default theme.

Implementation

Select({
  required this.prompt,
  required this.options,
  this.initialIndex = 0,
}) : theme = Theme.defaultTheme;