passApply method Null safety
Approve the request to join the group.
Only the admins and group owner have the permission to approve the request.
teamId
The group ID
account
The ID of the user who requests to join the group.
Implementation
Future<NIMResult<void>> passApply(String teamId, String account) async {
return _platform.passApply(teamId, account);
}