Skip to content

nathanielxd/random-gen

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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();

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages