getSDKBuildTag static method

Future<String> getSDKBuildTag()

Get the version information of ComPDFKit SDK.

Implementation

static Future<String> getSDKBuildTag() async {
  String buildTag = await _methodChannel.invokeMethod('sdk_build_tag');
  return buildTag;
}