VSelect constructor

const VSelect({
  1. Key? key,
  2. required Map<String, String> items,
  3. required ValueChanged<String?> onChange,
  4. String? label,
  5. String? value,
  6. String? hint,
  7. bool enabled = true,
  8. double? width,
})

Implementation

const VSelect({
  super.key,
  required this.items,
  required this.onChange,
  this.label,
  this.value,
  this.hint,
  this.enabled = true,
  this.width,
});