getSDKVersion method

Future<String?> getSDKVersion()

Returns the native SDK version string.

Implementation

Future<String?> getSDKVersion() async {
  await _wrapperSessionSetup;
  return _channel.invokeMethod(_methodGetSDKVersion);
}