AuthenticationThreePidCreds.fromJson constructor
Implementation
AuthenticationThreePidCreds.fromJson(Map<String, Object?> json)
: super.fromJson(json) {
final creds = json['threepid_creds'];
if (creds is Map<String, Object?>) {
threepidCreds = ThreepidCreds.fromJson(creds);
}
}