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