unregisterPublisher method
- String topic
inherited
Unregisters the node by nodeName as a publisher of the specified topic
.
topic
is the fully qualified name of the topic
xmlRpcUri is the XML-RPC URI of the caller node
Return of zero means that the caller was not registered as a publisher. The call still succeeds as the intended final state is reached.
Implementation
Future<void> unregisterPublisher(
String topic,
) async {
await _call('unregisterPublisher', [nodeName, topic, xmlRpcUri]);
}