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 "contactKey":
      return this.contactKey;
    case "traitType":
      return this.traitType;
    case "traitTitle":
      return this.traitTitle;
    case "traitDescription":
      return this.traitDescription;
    case "emotes":
      return this.emotes;
    default:
      return wrapped[key];
  }
}