app-starlock/lib/tools/menuItem/dropDownItem.dart
2024-05-18 09:37:50 +08:00

15 lines
283 B
Dart
Executable File

/// 通用菜单项
class DropDownItem {
// 显示的文本
String itemTitle = '';
// 选中的值
dynamic itemValue;
// 是否选中
bool isCheked = false;
DropDownItem(
{required this.itemTitle,
required this.itemValue,
required this.isCheked});
}