Password_Hasher constructor

Password_Hasher({
  1. required String algorithm_number,
  2. bool Base58 = false,
  3. bool Base64 = false,
  4. bool Hex = false,
  5. bool restrict = false,
  6. double restrict_number = 100,
  7. bool trigger = false,
  8. required TextFormField child,
  9. required TextEditingController controller,
})

Implementation

Password_Hasher({required this.algorithm_number,
  this.Base58 = false, this.Base64 = false, this.Hex = false,
  this.restrict = false, this.restrict_number = 100,
  this.trigger = false, required this.child, required this.controller,});