BootstrapSelect constructor

const BootstrapSelect({
  1. required List<BootstrapOption> options,
  2. required dynamic onChanged(
    1. dynamic
    ),
  3. dynamic value,
  4. bool isExpanded = true,
  5. bool enabled = true,
})

Implementation

const BootstrapSelect({
  required this.options,
  required this.onChanged,
  this.value,
  this.isExpanded = true,
  this.enabled = true,
});