showGrid method

Future<void> showGrid()

Switches to the grid view. After showGrid() API call options.viewType property in report will be "grid".

Implementation

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