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