AuthenticationPassword constructor

AuthenticationPassword({
  1. String? session,
  2. required String password,
  3. required AuthenticationIdentifier identifier,
})

Implementation

AuthenticationPassword(
    {String? session, required this.password, required this.identifier})
    : super(
        type: AuthenticationTypes.password,
        session: session,
      );