selectedNoStock property
Implementation
@computed
ObservableList<TicketWeebi> get selectedNoStock => ObservableList.of(
selected
.where((e) => e.ticketType != TicketType.stockIn)
.where((e) => e.ticketType != TicketType.stockOut)
.sorted((a, b) => a.date.compareTo(b.date)),
);