random_gen

Last updated:

0 purchases

random_gen Image
random_gen Images
Add to Cart

Description:

random gen

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

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.