TGetWalletsResponse.fromJson constructor
Implementation
factory TGetWalletsResponse.fromJson(Map<String, dynamic> json) {
final _wallets = (json['wallets'] as List)
.map((e) => v1Wallet.fromJson(e as Map<String, dynamic>))
.toList();
return TGetWalletsResponse(
wallets: _wallets,
);
}