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