getLiteAVSDKVersion static method

Future<String?> getLiteAVSDKVersion()

Getting the version of LiteAVSDK that depends on the native side 获取依赖Native端的 LiteAVSDK 的版本

Implementation

static Future<String?> getLiteAVSDKVersion() async {
  StringMsg stringMsg = await _playerPluginApi.getLiteAVSDKVersion();
  return stringMsg.value;
}