BootstrapMultiSelect constructor

const BootstrapMultiSelect({
  1. required List<BootstrapOption> options,
  2. required dynamic onChanged(
    1. List
    ),
  3. List values = const [],
  4. double height = 94,
})

Implementation

const BootstrapMultiSelect({
  required this.options,
  required this.onChanged,
  this.values = const [],
  this.height = 94,
});