refresh method

Future<void> refresh()

This API call allows you to control redrawing of the component when you use the following API calls: addCondition(), removeAllConditions(), removeCondition(), setFormat(), setOptions()

Implementation

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