7 lines
118 B
Dart
7 lines
118 B
Dart
|
class DefinitionModel {
|
||
|
String title;
|
||
|
bool isChecked;
|
||
|
|
||
|
DefinitionModel(this.title, {this.isChecked = false});
|
||
|
}
|