ApiAuth_ApiKeyConfig.fromJson constructor

ApiAuth_ApiKeyConfig.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory ApiAuth_ApiKeyConfig.fromJson(Map<String, dynamic> json) {
  return ApiAuth_ApiKeyConfig(
    apiKeySecretVersion: json['apiKeySecretVersion'] ?? '',
  );
}