addManagers method
拥有者添加管理员
teamId 群Id
accountList 待提升为管理员的用户帐号列表
Implementation
Future<NIMResult<List<NIMSuperTeamMember>>> addManagers(
String teamId, List<String> accountList) async {
return _platform.addManagers(teamId, accountList);
}
拥有者添加管理员
teamId 群Id
accountList 待提升为管理员的用户帐号列表
Future<NIMResult<List<NIMSuperTeamMember>>> addManagers(
String teamId, List<String> accountList) async {
return _platform.addManagers(teamId, accountList);
}