removeAllConditions method

Future<void> removeAllConditions()

Removes all conditional formatting rules. Use refresh() API call after to redraw the component and see changes.

Implementation

Future<void> removeAllConditions() async {
  WebViewController apiController = await controller.future;
  await apiController.runJavascript("flexmonster.removeAllConditions()");
}