fromJson static method
Implementation
@visibleForTesting
static CredentialsConnectionConfig? fromJson(json) {
if (json == null) return null;
var result = CredentialsConnectionConfig(
json["baseUrl"],
json["userName"],
json["password"],
httpTimeoutMs: json["httpTimeoutMs"],
);
return result;
}