getTeamMessageMuteMode method

Future<NIMResult<NIMTeamMessageMuteMode?>> getTeamMessageMuteMode(
  1. String teamId,
  2. NIMTeamType teamType
)

获取群消息免打扰模式

@param teamId 群组id @param teamType 群组类型

Implementation

Future<NIMResult<NIMTeamMessageMuteMode?>> getTeamMessageMuteMode(
    String teamId, NIMTeamType teamType) async {
  return _platform.getTeamMessageMuteMode(teamId, teamType);
}