get method

TTLink get(
  1. String key, [
  2. TTMsgCb? cb
])

Traverse a location in the graph

@param key Key to read data from @param cb @returns New link context corresponding to given key

Implementation

TTLink get(String key, [TTMsgCb? cb]) {
  return TTLink(key: key, client: _client, parent: this);
}