getSort method

Future<String> getSort(
  1. String uniqueName
)

Returns the sort type which is applied to the hierarchy.

Implementation

Future<String> getSort(String uniqueName) async {
  WebViewController apiController = await controller.future;
  return await apiController
      .runJavascriptReturningResult("flexmonster.getSort('$uniqueName')");
}