AuthenticationPassword.fromJson constructor
Implementation
AuthenticationPassword.fromJson(Map<String, Object?> json)
: password = json['password'] as String,
identifier = AuthenticationIdentifier.subFromJson(
json['identifier'] as Map<String, Object?>),
super.fromJson(json);