getTransactions method

Future<List<WalletTransaction>> getTransactions({
  1. int? limit,
  2. int? offset,
  3. String? walletId,
  4. String? unit,
  5. WalletType? walletType,
})

Get transactions from storage

Implementation

Future<List<WalletTransaction>> getTransactions({
  int? limit,
  int? offset,
  String? walletId,
  String? unit,
  WalletType? walletType,
}) {
  return _repository.getTransactions(
    limit: limit,
    offset: offset,
    walletId: walletId,
    unit: unit,
    walletType: walletType,
  );
}