deleteBatch method

Future<int> deleteBatch(
  1. List<int> ids
)

Delete successfully flushed events by their IDs. Negative IDs are routed to the memory queue (seq = -(id) - 1), positive IDs are routed to SQLite.

Implementation

Future<int> deleteBatch(List<int> ids) async {
  return (await deleteBatchDetailed(ids)).deletedCount;
}