TGetWalletResponse.fromJson constructor

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

Implementation

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