getSdkVersion static method

Future<String> getSdkVersion()

获取SDK版本号

returns 版本号

Implementation

static Future<String> getSdkVersion() async {
  return await _liveBaseMethodChannel.invokeMethod(
    'getSdkVersion',
  );
}