UserAuthenticationGenerator constructor

UserAuthenticationGenerator({
  1. required MethodEncryptDecrypt methodGenerator,
  2. required PasswordHasher passwordHasher,
})

methodGenerator used to generate the method field of generated UserAuthentications

Implementation

UserAuthenticationGenerator({
  required this.methodGenerator,
  required this.passwordHasher,
});