Last active
March 21, 2021 04:49
-
-
Save devjaime/929a79baac2bad7b2104f3661910518a to your computer and use it in GitHub Desktop.
Aquí hay una PasswordValidatorclase de ejemplo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class PasswordValidator { | |
| bool call(String password) { | |
| return password.length > 10; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment