void unsubscribe(String path, dynamic callback(ValueUpdate update))

Source

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