ack method
Send an ack.
Implementation
void ack({required String topic}) {
final data = {
'topic': topic,
'type': 'ack',
'payload': '',
'silent': true,
};
final message = json.encode(data);
_socket?.send(message);
}
Send an ack.
void ack({required String topic}) {
final data = {
'topic': topic,
'type': 'ack',
'payload': '',
'silent': true,
};
final message = json.encode(data);
_socket?.send(message);
}