setTeamMessageMuteMode method

Future<NIMResult<void>> setTeamMessageMuteMode(
  1. String teamId,
  2. NIMTeamType teamType,
  3. NIMTeamMessageMuteMode muteMode
)

设置群组消息免打扰模式 @param teamId 群组Id @param teamType 群组类型 @param muteMode 群组消息免打扰模式

Implementation

Future<NIMResult<void>> setTeamMessageMuteMode(String teamId,
    NIMTeamType teamType, NIMTeamMessageMuteMode muteMode) async {
  return _platform.setTeamMessageMuteMode(teamId, teamType, muteMode);
}