operator [] method

  1. @override
dynamic operator [](
  1. dynamic key
)
override

Implementation

@override
operator [](key) {
  switch (key?.toString()) {
    case "creator":
      return this.creator;
    case "dateCreated":
      return this.dateCreated;
    case "assistedTask":
      return this.assistedTask;
    case "contactKeys":
      return this.contactKeys;
    case "milestoneDate":
      return this.milestoneDate;
    case "milestone":
      return this.milestone;
    case "photos":
      return this.photos;
    case "videos":
      return this.videos;
    case "location":
      return this.location;
    case "details":
      return this.details;
    default:
      return wrapped[key];
  }
}