flushUICommandWithContextId function

void flushUICommandWithContextId(
  1. double contextId,
  2. Pointer<NativeBindingObject> selfPointer
)

Implementation

void flushUICommandWithContextId(double contextId, Pointer<NativeBindingObject> selfPointer) {
  WebFController? controller = WebFController.getControllerOfJSContextId(contextId);
  if (controller != null) {
    flushUICommand(controller.view, selfPointer);
  }
}