This commit is contained in:
hrxiang
2021-09-18 14:26:24 +08:00
parent be1c10fb38
commit fb92f15062
5 changed files with 11 additions and 7 deletions

View File

@@ -335,7 +335,8 @@ class IMManager {
///
Future<String?> setSelfInfo(
{String? name,
{required String uid,
String? name,
String? icon,
int? gender,
String? mobile,
@@ -345,6 +346,7 @@ class IMManager {
return _channel.invokeMethod(
'setSelfInfo',
_buildParam({
'uid': uid,
'name': name,
'icon': icon,
'gender': gender,