deleteItems method
Removes all items matching the given request details from persistence.
Implementation
Future<void> deleteItems({RequestDetails? details}) async {
await ready;
await sourceList.deleteItems(
DeleteListOperation<T>(
operationId: generateOperationId(),
details: details ?? RequestDetails.delete(),
createdAt: getTime(),
),
);
}