14 lines
308 B
Dart
14 lines
308 B
Dart
class Checklist {
|
|
final int id;
|
|
final String ownerId;
|
|
String _title;
|
|
String description;
|
|
final DateTime createdTime;
|
|
|
|
String get title => _title == '' ? 'Unnamed $id' : _title;
|
|
|
|
Checklist(
|
|
this.id, this.ownerId, String title, this.description, this.createdTime)
|
|
: _title = title;
|
|
}
|