operator [] method
Implementation
@override
operator [](key) {
switch(key?.toString()) {
case "contact": return this.contact;
case "title": return this.title;
case "body": return this.body;
case "created": return this.created;
default: return wrapped[key];
}
}