app-starlock/lib/tools/menuItem/dropDownItem.dart

16 lines
284 B
Dart
Raw Permalink Normal View History

2024-08-19 15:24:14 +08:00
/// 通用菜单项
class DropDownItem {
2024-08-19 15:24:14 +08:00
DropDownItem(
{required this.itemTitle,
required this.itemValue,
required this.isCheked});
// 显示的文本
String itemTitle = '';
// 选中的值
dynamic itemValue;
// 是否选中
bool isCheked = false;
}