NativeSelectProps constructor

const NativeSelectProps({
  1. required List<NativeSelectOptionProps> options,
  2. String? value,
  3. String? placeholder,
  4. ComponentSize size = ComponentSize.md,
  5. bool disabled = false,
  6. bool required = false,
  7. String? name,
  8. String? id,
  9. String? label,
  10. String? error,
  11. bool fullWidth = false,
  12. void onChange(
    1. String
    )?,
})

Implementation

const NativeSelectProps({
  required this.options,
  this.value,
  this.placeholder,
  this.size = ComponentSize.md,
  this.disabled = false,
  this.required = false,
  this.name,
  this.id,
  this.label,
  this.error,
  this.fullWidth = false,
  this.onChange,
});