listTransactions method

Future<List<TransactionDetails>> listTransactions(
  1. bool includeRaw
)

Return an unsorted list of transactions made and received by the wallet

Implementation

Future<List<bridge.TransactionDetails>> listTransactions(
    bool includeRaw) async {
  try {
    final res = await loaderApi.getTransactionsStaticMethodApi(
        walletId: _wallet, includeRaw: includeRaw);
    return res;
  } on bridge.Error catch (e) {
    throw handleBdkException(e);
  }
}