DropDownMenu constructor

const DropDownMenu({
  1. Key? key,
  2. String? title,
  3. required void onChanged(
    1. String?
    ),
  4. required List<String> values,
  5. required String value,
  6. bool? enabled,
  7. bool? themeFont,
})

Implementation

const DropDownMenu({
  Key? key,
  this.title,
  required this.onChanged,
  required this.values,
  required this.value,
  this.enabled,
  this.themeFont,
}) : super(key: key);