getTransactions method
Future<List<WalletTransaction> >
getTransactions({
- int? limit,
- int? offset,
- String? walletId,
- String? unit,
- 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,
);
}