publish method
publish
Implementation
Future<int> publish(String channel, Object message) async {
return await _runWithRetryNew(() async {
return (await RespCommandsTier1(_client!).publish(channel, message))
.toInteger()
.payload;
});
}