Skip to content

Instantly share code, notes, and snippets.

@devjaime
Last active March 21, 2021 04:49
Show Gist options
  • Select an option

  • Save devjaime/929a79baac2bad7b2104f3661910518a to your computer and use it in GitHub Desktop.

Select an option

Save devjaime/929a79baac2bad7b2104f3661910518a to your computer and use it in GitHub Desktop.
Aquí hay una PasswordValidatorclase de ejemplo
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