getVersionCode static method

Future<String> getVersionCode()

Get the version code of the ComPDFKit SDK.

Implementation

static Future<String> getVersionCode() async {
  String versionCode =
      await _methodChannel.invokeMethod(ComPDFKit.sdkVersionCode);
  return versionCode;
}