TGetWalletResponse.fromJson constructor
Implementation
factory TGetWalletResponse.fromJson(Map<String, dynamic> json) {
final _wallet = v1Wallet.fromJson(json['wallet'] as Map<String, dynamic>);
return TGetWalletResponse(
wallet: _wallet,
);
}