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