v1GetWalletResponse.fromJson constructor

v1GetWalletResponse.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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