mobileapplicationPassvault/lib/view_pages/list_item.dart

9 lines
136 B
Dart
Raw Normal View History

2024-04-12 05:23:32 +00:00
// ignore: file_names
class ListItem {
String title;
bool isChecked;
ListItem({required this.title, this.isChecked = false});
}