queryMutedTeamMembers method Null safety
- String teamId
Query the muted members.
The API only returns the muted users if it is called successfully. If you need to query the mute status of the group as a whole, call Team#getMuteMode or Team#isAllMute.
teamId
The group ID
Implementation
Future<NIMResult<List<NIMSuperTeamMember>>> queryMutedTeamMembers(
String teamId) async {
return _platform.queryMutedTeamMembers(teamId);
}