Get wallets that support a specific currency
List<Wallet> getWalletsForUnit(String unit) { return _wallets .where((wallet) => wallet.supportedUnits.any((u) => u == unit)) .toList(); }