SelectData constructor

const SelectData({
  1. required bool? autoClose,
  2. required Predicate<Object?> isSelected,
  3. required SelectValueChanged<Object?> onChanged,
  4. required bool hasSelection,
  5. required bool enabled,
})

Implementation

const SelectData({
  required this.autoClose,
  required this.isSelected,
  required this.onChanged,
  required this.hasSelection,
  required this.enabled,
});