import 'listitem.dart'; class Checklist { final int id; final String ownerId; String title; String description; final DateTime createdTime; List items; Checklist(this.id, this.ownerId, this.title, this.description, this.createdTime, List? items) : items = items ?? []; }