UpdatePasswordComplexityPolicyRequest constructor

UpdatePasswordComplexityPolicyRequest({
  1. int? minLength,
  2. bool? hasUppercase,
  3. bool? hasLowercase,
  4. bool? hasNumber,
  5. bool? hasSymbol,
})

Implementation

factory UpdatePasswordComplexityPolicyRequest({
  $core.int? minLength,
  $core.bool? hasUppercase,
  $core.bool? hasLowercase,
  $core.bool? hasNumber,
  $core.bool? hasSymbol,
}) {
  final result = create();
  if (minLength != null) result.minLength = minLength;
  if (hasUppercase != null) result.hasUppercase = hasUppercase;
  if (hasLowercase != null) result.hasLowercase = hasLowercase;
  if (hasNumber != null) result.hasNumber = hasNumber;
  if (hasSymbol != null) result.hasSymbol = hasSymbol;
  return result;
}