operator []= method
Implementation
@override
operator []=(String key, value) {
switch(key) {
case "title": this.title = value as String; break;
case "subtitle": this.subtitle = value as String; break;
case "body": this.body = value as String; break;
case "imageUrl": this.imageUrl = value as Uri; break;
default: wrapped[key] = value;
}
}