renameFriendGroup method
修改好友分组的名称
参数
oldName 旧的分组名称
newName 新的分组名称
callback 回调(web无回调)
Implementation
@override
Future<V2TimCallback> renameFriendGroup({
required String oldName,
required String newName,
}) async {
return V2TimCallback.fromJson(
formatJson(
await _channel.invokeMethod(
"renameFriendGroup",
buildFriendManagerParam(
{
"oldName": oldName,
"newName": newName,
},
),
),
),
);
}