clearFilter method

Future<void> clearFilter(
  1. String uniqueName
)

Clears the filter which was applied previously to the specified hierarchy.

Implementation

Future<void> clearFilter(String uniqueName) async {
  WebViewController apiController = await controller.future;
  await apiController.runJavascript("flexmonster.clearFilter('$uniqueName')");
}