schedulePatch method
Directly schedule an arbitrary patch for the given entity id. This bypasses diffing and writes to the outbox immediately (debounced before network send). Safe to call repeatedly; patches will be merged and deduped.
Implementation
void schedulePatch(String id, Map<String, dynamic> patch) {
if (patch.isEmpty) return;
_schedule(id, patch);
}