OpenDropdown constructor

const OpenDropdown({
  1. Key? key,
  2. required String hint,
  3. required List<String> items,
  4. required void onChanged(
    1. String?
    ),
  5. required double width,
  6. String? value,
})

Implementation

const OpenDropdown({
  Key? key,
  required this.hint,
  required this.items,
  required this.onChanged,
  required this.width,
  this.value,
}) : super(key: key);