updateTeamMemberNick method

Future<NIMResult<void>> updateTeamMemberNick(
  1. String teamId,
  2. NIMTeamType teamType,
  3. String accountId,
  4. String teamNick
)

修改群成员昵称

@param teamId 群组Id @param teamType 群组类型 @param accountId 被修改成员的账号id @param teamNick 被修改成员新的昵称

Implementation

Future<NIMResult<void>> updateTeamMemberNick(String teamId,
    NIMTeamType teamType, String accountId, String teamNick) async {
  return _platform.updateTeamMemberNick(
      teamId, teamType, accountId, teamNick);
}