ArcaneSelect constructor

const ArcaneSelect({
  1. required List<SelectOption> options,
  2. String? value,
  3. String? placeholder,
  4. InputSizeStyle size = InputSizeStyle.md,
  5. InputStyle? style,
  6. bool disabled = false,
  7. bool required = false,
  8. String? name,
  9. String? id,
  10. String? label,
  11. String? error,
  12. void onChange(
    1. String
    )?,
  13. bool fullWidth = false,
  14. Key? key,
})

Implementation

const ArcaneSelect({
  required this.options,
  this.value,
  this.placeholder,
  this.size = InputSizeStyle.md,
  this.style,
  this.disabled = false,
  this.required = false,
  this.name,
  this.id,
  this.label,
  this.error,
  this.onChange,
  this.fullWidth = false,
  super.key,
});