getPendingNonDurableTimestamps static method
Get pending (non-delivered) session starts for replay.
Implementation
static List<int> getPendingNonDurableTimestamps() {
return _getPendingSessionStarts()
.where((e) => !e.durable)
.map((e) => e.ts)
.toList();
}