AuthenticationPassword.fromJson constructor

AuthenticationPassword.fromJson(
  1. Map<String, Object?> json
)

Implementation

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