v1GetApiKeyResponse.fromJson constructor
Implementation
factory v1GetApiKeyResponse.fromJson(Map<String, dynamic> json) {
final _apiKey = v1ApiKey.fromJson(json['apiKey'] as Map<String, dynamic>);
return v1GetApiKeyResponse(
apiKey: _apiKey,
);
}