operator [] method
Implementation
@override
operator [](key) {
switch (key) {
case "path":
return this.path;
default:
return wrapped[key];
}
}
@override
operator [](key) {
switch (key) {
case "path":
return this.path;
default:
return wrapped[key];
}
}