AntdSelector constructor

const AntdSelector({
  1. Key? key,
  2. AntdSelectorStyle? style,
  3. AntdStyleBuilder<AntdSelectorStyle, AntdSelector>? styleBuilder,
  4. bool? disabled,
  5. bool? readOnly,
  6. List<String>? value,
  7. bool? autoCollect = true,
  8. ValueChanged<List<String>?>? onChange,
  9. int columns = 2,
  10. required List<AntdSelectorOption> options,
})

Implementation

const AntdSelector({
  super.key,
  super.style,
  super.styleBuilder,
  super.disabled,
  super.readOnly,
  super.value,
  super.autoCollect,
  super.onChange,
  this.columns = 2,
  required this.options,
});