checkGovExist method

Future<bool> checkGovExist(
  1. int version
)

Implementation

Future<bool> checkGovExist(int version) async {
  final bool? res = await serviceRoot.webView!.evalJavascript(
      'gov2.checkGovExist(api, $version)',
      wrapPromise: false);
  return res ?? false;
}