AppDropDownMenu<T> constructor

const AppDropDownMenu<T>({
  1. Key? key,
  2. T? initialSelection,
  3. required ValueChanged<T?> onSelected,
  4. required List<DropdownMenuEntry<T>> dropdownMenuEntries,
  5. Color backgroundColor = Colors.white,
  6. Color fillColor = Colors.blueGrey,
  7. BorderRadiusGeometry borderRadius = BorderRadius.zero,
  8. 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,
});