TGetPrivateKeysResponse.fromJson constructor
Implementation
factory TGetPrivateKeysResponse.fromJson(Map<String, dynamic> json) {
final _privateKeys = (json['privateKeys'] as List).map((e) => v1PrivateKey.fromJson(e as Map<String, dynamic>)).toList();
return TGetPrivateKeysResponse(
privateKeys: _privateKeys,
);
}