This commit is contained in:
Brett
2024-08-02 21:59:30 +08:00
parent ff25636516
commit c10dabc7e8
9 changed files with 53 additions and 23 deletions

View File

@@ -526,15 +526,16 @@ class IMManager {
}));
/// 上传日志
/// [uploadlogParams] ex
Future uploadLogs({
String? ex,
int line = 0,
String? operationID,
}) =>
_channel.invokeMethod(
'uploadLogs',
_buildParam({
'ex': ex,
'line': line,
'operationID': Utils.checkOperationID(operationID),
}));

View File

@@ -2,7 +2,7 @@ import 'package:flutter/services.dart';
import 'package:flutter_openim_sdk/flutter_openim_sdk.dart';
class OpenIM {
static const version = '3.8.0-rc.16';
static const version = '3.8.0';
static const _channel = const MethodChannel('flutter_openim_sdk');