9 lines
136 B
Dart
9 lines
136 B
Dart
|
// ignore: file_names
|
||
|
|
||
|
class ListItem {
|
||
|
String title;
|
||
|
bool isChecked;
|
||
|
|
||
|
ListItem({required this.title, this.isChecked = false});
|
||
|
}
|