random_gen 1.0.0 copy "random_gen: ^1.0.0" to clipboard
random_gen: ^1.0.0 copied to clipboard

Fast way of generating random strings of text and passwords.

Random Gen #

Fast way of generating random strings of text and passwords.

Getting started #

Add the package to your dependencies. random_gen: ^1.0.0

Usage #


// Quickest way.

final password = RandomGenerator.password();

final customPassword = RandomGenerator.password(
    length: 32,
    includeLowercase: false
);

// Using builders.

final passwordBuilder = RandomBuilder()
    ..withSymbols(false)
    ..withLength(8);

final password = passwordBuilder.build();
copied to clipboard
0
likes
150
points
22
downloads

Publisher

verified publishernathans.dev

Weekly Downloads

2024.07.06 - 2025.01.18

Fast way of generating random strings of text and passwords.

Repository (GitHub)

Documentation

API reference

License

Unlicense (license)

More

Packages that depend on random_gen