addManagers method

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

拥有者添加管理员 teamId 群Id accountList 待提升为管理员的用户帐号列表

Implementation

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