operator [] method
Implementation
@override
operator [](key) {
switch(key?.toString()) {
case "creator": return this.creator;
case "dateCreated": return this.dateCreated;
case "assistedTask": return this.assistedTask;
case "isActive": return this.isActive;
case "contactKey": return this.contactKey;
case "bookClub": return this.bookClub;
default: return wrapped[key];
}
}