setTeamMemberChatBannedStatus method
- String teamId,
- NIMTeamType teamType,
- String accountId,
- 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);
}