setLogLevel static method

Future<void> setLogLevel(
  1. AlivcLivePushLogLevel level
)

设置Log级别

level Log级别 默认:AlivcLivePushLogLevel.error

Implementation

static Future<void> setLogLevel(AlivcLivePushLogLevel level) async {
  return methodChannel.invokeMethod(
      'setLogLevel', _wrap(arg: level.index.toString()));
}