setConsoleEnable static method
启用或禁用控制台日志打印
enable
指定是否启用 true:启用,false:禁用
Implementation
static Future<void> setConsoleEnable(bool enable) async {
return _liveBaseMethodChannel.invokeMethod(
'setConsoleEnable',
wrapArgs(arg: boolToString(enable)),
);
}