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('sdk_version_code');
  return versionCode;
}