removeManagers method Null safety
Unassign the admin role from specific group members.
Only the group owner has the permission for this operation.
teamId
The group ID
accountList
Accounts that need to be unassigned from the admin role
Implementation
Future<NIMResult<List<NIMSuperTeamMember>>> removeManagers(
String teamId, List<String> accountList) async {
return _platform.removeManagers(teamId, accountList);
}