transactions method

  1. @override
Future<List<CrossmintTransactionSummary>> transactions(
  1. String walletId
)
override

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