publishFormSubmitEvent static method

Future publishFormSubmitEvent(
  1. String selector,
  2. List<String> values
)

Publishes a form submit event for the given selector and context values asynchronously.

This method creates and publishes a form submission event using the EventManager. It's used to track form submissions and capture form data.

selector The selector to identify the submitted form values Context values to pass along with the form submit event Returns a Future<dynamic> that completes when the operation is done

Implementation

static Future<dynamic> publishFormSubmitEvent(
  String selector,
  List<String> values,
) {
  return BlueConicPlatform.instance.publishFormSubmitEvent(selector, values);
}