publish method
Publish a message to a topic.
Implementation
Future<void> publish(
String topic,
String payload, {
Map<String, String>? attributes,
}) {
log('Publishing message to topic: $topic');
return _provider.publish(topic, payload, attributes: attributes);
}