Since PowerShell’s Get-Help command returns objects, not just plain text, it’s possible to filter the returned results.
To view only the required parameters, for example on the New-ADGroup cmdlet, do the following:
Get-Help New-ADGroup -Parameter * | Where-Object {$_.required -eq $true}
The result: