updateMemberNick static method
更新群中,用户的昵称
Implementation
static Future<bool> updateMemberNick(String teamId, NIMTeamType teamType,
String accountId, String teamNick) async {
var res = await NimCore.instance.teamService
.updateTeamMemberNick(teamId, teamType, accountId, teamNick);
return res.isSuccess;
}