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