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