TGetApiKeyResponse.fromJson constructor

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

Implementation

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