operator [] method

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

Safe access operations

Implementation

V? operator [](Object? key) {
  RxTracking.track(this);
  return value[key];
}