send method
Sends the message in the stream to the broker.
Implementation
@override
void send(MqttByteBuffer message) {
final messageBytes = message.read(message.length);
client?.add(messageBytes.toList());
}
Sends the message in the stream to the broker.
@override
void send(MqttByteBuffer message) {
final messageBytes = message.read(message.length);
client?.add(messageBytes.toList());
}