validatePassword function
Implementation
String? validatePassword(String? value, BuildContext context) {
return validatePasswordNotEmpty(value, context) ??
validatePassword6MinLength(value!, context) ??
validatePassword1Letter(value!, context) ??
validatePassword1Number(value!, context) ??
validatePassword1Symbol(value!, context);
}