Select.withTheme constructor

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

Constructs a Select component with the supplied theme.

Implementation

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