setDownloadWithoutWifi static method
设置是否在非wifi环境下载内核,默认false
Implementation
static Future<bool> setDownloadWithoutWifi(bool isDownloadWithoutWifi) async {
if (defaultTargetPlatform == TargetPlatform.android) {
final Map<String, dynamic> params = <String, dynamic>{
'isDownloadWithoutWifi': isDownloadWithoutWifi,
};
await _channel.invokeMethod("setDownloadWithoutWifi", params);
return true;
} else {
return false;
}
}