transactions method
Implementation
@override
Future<List<CrossmintTransactionSummary>> transactions(
String walletId,
) async {
final Object? response = await _service.getTransactions(walletId);
return readItemMaps(
response,
).map(WalletResponseParser.transactionFromMap).toList(growable: false);
}