operator []= method
void
operator []=(
- String key,
- dynamic value
)
override
Implementation
@override
operator []=(String key, value) {
switch(key) {
case "accountId": this.accountId = value as String; break;
case "eventId": this.eventId = value as String; break;
case "entityType": this.entityType = value as MSchemaRef; break;
case "recordKey": this.recordKey = value as RecordKey; break;
case "dateUpdated": this.dateUpdated = value as DateTime; break;
case "oldStatus": this.oldStatus = value as IThreadStatus; break;
case "newStatus": this.newStatus = value as IThreadStatus; break;
default: wrapped[key] = value;
}
}