v1EnableAuthProxyResult.fromJson constructor
Implementation
factory v1EnableAuthProxyResult.fromJson(Map<String, dynamic> json) {
final _userId = json['userId'] as String;
final _encryptedApiKey = json['encryptedApiKey'] as String;
return v1EnableAuthProxyResult(
userId: _userId,
encryptedApiKey: _encryptedApiKey,
);
}