unsubscribe method

void unsubscribe(
  1. String path,
  2. dynamic callback(
    1. ValueUpdate update
    )
)

Implementation

void unsubscribe(String path, Function(ValueUpdate update) callback) {
  var node = nodeCache.getRemoteNode(path);
  node._unsubscribe(this, callback);
}