flutter_random_password 1.1.0
flutter_random_password: ^1.1.0 copied to clipboard
A lightweight Dart package for generating random passwords combining lowercase, uppercase, numbers, and symbols.
1.1.0 #
- Add
RandomPass.generatePin()for generating a random numeric PIN of any custom length (minimum 1, no upper bound).
1.0.1 #
- Add
repositoryfield topubspec.yaml. - Update
LICENSEto a standard MIT License with znd3v (zendevv.com) as copyright holder. - Document platform support (Android, iOS, Web, Windows, macOS, Linux,
server/CLI) and installation steps in
README.md. - Note that password generation is not cryptographically secure.
1.0.0 #
RandomPass.generate()for creating random passwords of a given length.- Toggle lowercase, uppercase, numeric, and symbol character sets via
hasAlphabet,hasAlphabetUpper,hasNumeric, andhasSymbol. - Zero external dependencies (uses only
dart:math).