// ignore: file_names
class ListItem {
String title;
bool isChecked;
ListItem({required this.title, this.isChecked = false});
}