publishUpdateContentEvent static method

Future publishUpdateContentEvent(
  1. String selector,
  2. String value
)

Publishes an update content event for the given selector and value asynchronously.

This method creates and publishes an event when content is updated. It's useful for tracking dynamic content changes in the application.

selector The selector to identify the component with updated content value The updated content value Returns a Future<dynamic> that completes when the operation is done

Implementation

static Future<dynamic> publishUpdateContentEvent(
  String selector,
  String value,
) {
  return BlueConicPlatform.instance.publishUpdateContentEvent(
    selector,
    value,
  );
}