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