operator []= method

  1. @override
void operator []=(
  1. String key,
  2. dynamic value
)
override

Implementation

@override
operator []=(String key, value) {
  switch (key) {
    case "creator":
      this.creator = value as IReliveItContact;
      break;
    case "dateCreated":
      this.dateCreated = value as DateTime;
      break;
    case "assistedTask":
      this.assistedTask = value as ITaskFactForMModel;
      break;
    case "contactKey":
      this.contactKey = value as MKey;
      break;
    case "location1":
      this.location1 = value as IPhysicalLocation;
      break;
    case "location2":
      this.location2 = value as IPhysicalLocation;
      break;
    default:
      wrapped[key] = value;
  }
}