/// 平台信息 import 'dart:io'; import '../Method.dart'; int androidVersion = 0; Future initPlatform()async{ if (Platform.isAndroid) { androidVersion = await method.androidGetVersion(); } }