clearFilter method

Future<void> clearFilter(
  1. String hierarchyName
)

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

Implementation

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