version property

Future<String> version

The current version of the PDFTron SDK.

Implementation

static Future<String> get version async {
  final String version = await _channel.invokeMethod(Functions.getVersion);
  return version;
}