keyToObj function

dynamic keyToObj(
  1. String key
)

顶级函数,根据 key 返回指定对象

Implementation

dynamic keyToObj(String key) {
  return _objCache[key];
}