getMenuItems method
Implementation
List<DropdownMenuItem> getMenuItems() {
var dropDownItems = <DropdownMenuItem<String>>[];
element.controlConfig.dropDownItems!.forEach((key, value) {
dropDownItems.add(DropdownMenuItem<String>(
value: key,
child: Text(
value,
style: const TextStyle(color: Colors.black),
)));
});
return dropDownItems;
}