get method

TTLink get(
  1. String soul, [
  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 soul, [TTMsgCb? cb]) {
  return linkClass = TTLink(key: soul, client: this);
}