Files
briessenchecker/lib/models/checklist.dart
2023-08-07 23:25:56 +02:00

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;
}