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