getPlatformVersion static method

Future<String> getPlatformVersion()

获取安卓系统版本

Implementation

static Future<String> getPlatformVersion() async {
  _checkIsInit();
  return await _methodChannel.invokeMethod<String>('getPlatformVersion') ??
      '未知系统版本';
}