setTeamMemberChatBannedStatus method

Future<NIMResult<void>> setTeamMemberChatBannedStatus(
  1. String teamId,
  2. NIMTeamType teamType,
  3. String accountId,
  4. bool chatBanned,
)

设置群组成员聊天禁言状态

@param teamId 群组Id @param teamType 群组类型 @param accountId 群成员账号id @param chatBanned 群组中聊天是否被禁言

Implementation

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