unfinishedTransactions static method
A wrapper around Transaction.unfinished
https://developer.apple.com/documentation/storekit/transaction/unfinished
A sequence that emits unfinished transactions for the customer.
Implementation
static Future<List<SK2Transaction>> unfinishedTransactions() async {
final List<SK2TransactionMessage> msgs = await hostApi2
.unfinishedTransactions();
final List<SK2Transaction> transactions = msgs
.map((SK2TransactionMessage e) => e.convertFromPigeon())
.toList();
return transactions;
}