AppDropDownMenu<T> constructor
const
AppDropDownMenu<T> ({
- Key? key,
- T? initialSelection,
- required ValueChanged<
T?> onSelected, - required List<
DropdownMenuEntry< dropdownMenuEntries,T> > - Color backgroundColor = Colors.white,
- Color fillColor = Colors.blueGrey,
- BorderRadiusGeometry borderRadius = BorderRadius.zero,
- double elevation = 0.0,
Implementation
const AppDropDownMenu({
super.key,
this.initialSelection,
required this.onSelected,
required this.dropdownMenuEntries,
this.backgroundColor = Colors.white,
this.fillColor = Colors.blueGrey,
this.borderRadius = BorderRadius.zero,
this.elevation = 0.0,
});