operator [] method

V? operator [](
  1. Object? key
)

Implementation

V? operator [](Object? key) {
  return value[key];
}