removeManagers method

Future<NIMResult<List<NIMSuperTeamMember>>> removeManagers(
  1. String teamId,
  2. List<String> accountList
)

移除管理员 拥有者撤销管理员权限 teamId 群Id accountList 待撤销的管理员的帐号列表

Implementation

Future<NIMResult<List<NIMSuperTeamMember>>> removeManagers(
    String teamId, List<String> accountList) async {
  return _platform.removeManagers(teamId, accountList);
}