This commit is contained in:
hrxiang 2021-11-11 10:11:42 +08:00
parent d4bc4f7ae2
commit ad346184cb

View File

@ -371,8 +371,9 @@ class IMManager {
}
///
void setSdkLog({required bool enable}) {
_channel.invokeMethod('setSdkLog', _buildParam({'sdkLog': enable ? 0 : 1}));
void enabledSDKLog({required bool enabled}) {
_channel.invokeMethod(
'setSdkLog', _buildParam({'sdkLog': enabled ? 0 : 1}));
}
///