Yes, it would be very similar with a Form with Toggle switches. Syntax is a little simpler since they just return a true \ false values. something like:
If(togQuestion1 || togQuestion2 || togQuestion3 || togQuestion4 ||togQuestion5 || togQuestion6, Navigate('Yes Screen), Navigate('No Screen'))
togQuestion1, togQueston2, … etc. would be replaced by the name of your Toggle controls in your form.
This evaluation would go after your SubmitForm function in your save button. I typically place this in your form's OnSuccess property.
or you can modify your If function like:
If(Form1.Valid,SubmitForm(Form1); If(togQuestion1 || togQuestion2 || togQuestion3 || togQuestion4 ||togQuestion5 || togQuestion6, Navigate('Yes Screen), Navigate('No Screen')),Notify("Please enter the Required fields",NotificationType.Error));