fromString static method
Implementation
static PasswordPolicyEnforcementState fromString(String value) {
return PasswordPolicyEnforcementState.values.firstWhere(
(e) => e.value == value,
orElse: () => PasswordPolicyEnforcementState.off,
);
}