removeCondition method

Future<void> removeCondition(
  1. String id
)

Removes the conditional formatting rule by id. Use refresh() API call after to redraw the component and see changes.

Implementation

Future<void> removeCondition(String id) async {
  WebViewController apiController = await controller.future;
  await apiController.runJavascript("webdatarocks.removeCondition('$id')");
}