updateTeamNotify static method
设置群消息不提醒
Implementation
static Future<bool> updateTeamNotify(String teamId, bool mute) async {
var result = await NimCore.instance.settingsService.setTeamMessageMuteMode(
teamId,
NIMTeamType.typeNormal,
mute
? NIMTeamMessageMuteMode.teamMessageMuteModeOn
: NIMTeamMessageMuteMode.teamMessageMuteModeOff);
return result.isSuccess;
}