ro_password_generator 0.0.1
ro_password_generator: ^0.0.1 copied to clipboard
A flutter package that randomly generates password with digits, lowcase characters, upcase characters and special characters.
RoPasswordGenerator #
A flutter package that randomly generates password with digits, lowcase characters, upcase characters and special characters.
Usage #
final password = RoPasswordGenerator.generate(length: 12, includeUpcaseChars: true, excludeSimiliarChars: false);
Installation #
- Add the latest version of package to your pubspec.yaml (and run
dart pub get):
dependencies:
ro_password_generator: ^0.0.1
- Import the package and use it in your Flutter App.
import 'package:ro_password_generator/ro_password_generator.dart';