v1GetApiKeyResponse.fromJson constructor

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

Implementation

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