MenuDialog constructor
MenuDialog({})
Implementation
MenuDialog({
required this.context,
required this.items,
required this.callback,
this.selectedKey,
this.maxShowItems = 10,
this.formattedItems,
this.firstOption,
this.keyItemName,
}) : assert(items is List<String> || items is List<Map<String, String>> || items is List || items is List<MapEntry> || items is Map){
_init();
}