TGetPrivateKeyResponse.fromJson constructor
Implementation
factory TGetPrivateKeyResponse.fromJson(Map<String, dynamic> json) {
final _privateKey = v1PrivateKey.fromJson(json['privateKey'] as Map<String, dynamic>);
return TGetPrivateKeyResponse(
privateKey: _privateKey,
);
}