unspentTransactions property

  1. @override
List<WalletTransaction> unspentTransactions
override

Implementation

@override
List<WalletTransaction> get unspentTransactions => transactions
    .where((tx) => tx.status == TransactionStatus.unspent)
    .toList();