TGetWalletsResponse.fromJson constructor

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

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,
  );
}