setLogConfig static method
Set the configuration information for the log
Implementation
static Future<V2TXLiveCode> setLogConfig(V2TXLiveLogConfig config) async {
var code = await V2TXLivePremier()._channel.invokeMethod("setLogConfig", {"config": config.toJson()});
if (code is V2TXLiveCode) {
return code;
} else {
return V2TXLIVE_ERROR_FAILED;
}
}