CustomProfileDropdownButton constructor

const CustomProfileDropdownButton({
  1. Key? key,
  2. required IconData icon,
  3. required bool isDark,
  4. required List<DropdownMenuItem<String>> items,
  5. required String selectedValue,
  6. required ValueChanged<String> onChanged,
})

Implementation

const CustomProfileDropdownButton({
  super.key,
  required this.icon,
  required this.isDark,
  required this.items,
  required this.selectedValue,
  required this.onChanged,
});