DropDown constructor

const DropDown({
  1. Key? key,
  2. required Map<String, String> items,
  3. required dynamic callback(
    1. String
    ),
  4. required String title,
})

Implementation

const DropDown({
  super.key,
  required this.items,
  required this.callback,
  required this.title,
});