publishUpdateValuesEvent static method

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

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

This method creates and publishes an event when values are updated. It's useful for tracking changes to specific data values or fields.

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

Implementation

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