muteTeamMember method Null safety

Future<NIMResult<void>> muteTeamMember(
  1. String teamId,
  2. List<String> accountList,
  3. bool mute
)

Mute a specified member Admins or the group owner can mute or unmute members in the group.

Implementation

Future<NIMResult<void>> muteTeamMember(
    String teamId, List<String> accountList, bool mute) async {
  throw UnimplementedError('muteTeamMember() is not implemented');
}