Files
briessenchecker/lib/models/listitem.dart
2023-08-05 02:21:33 +02:00

13 lines
296 B
Dart

class Item {
final int id;
final String ownerId;
String title;
String description;
final DateTime createdTime;
List<String> checkedBy;
Item(this.id, this.ownerId, this.title, this.description, this.createdTime,
List<String>? checkedBy)
: checkedBy = checkedBy ?? [];
}