ApiAuth_ApiKeyConfig.fromJson constructor
ApiAuth_ApiKeyConfig.fromJson(
- Object? j
Implementation
factory ApiAuth_ApiKeyConfig.fromJson(Object? j) {
final json = j as Map<String, Object?>;
return ApiAuth_ApiKeyConfig(
apiKeySecretVersion: switch (json['apiKeySecretVersion']) {
null => '',
Object $1 => decodeString($1),
},
);
}