respond method

bool respond(
  1. Uint8List data
)

Respond to message

Implementation

bool respond(Uint8List data) {
  if (replyTo == null || replyTo == '') return false;
  _client.pub(replyTo, data);
  return true;
}