outboxedWritesProvider top-level property

  1. @ProviderFor.new(outboxedWrites)
Provider<OutboxedWrites> outboxedWritesProvider
final

Helper that funnels Supabase writes through the OfflineOutbox. On web (no outbox), it falls through to direct Supabase calls. Screens and notifiers can write through this without re-implementing the enqueue / call / mark-synced dance per call site.

Copied from outboxedWrites.

Implementation

@ProviderFor(outboxedWrites)
final outboxedWritesProvider = Provider<OutboxedWrites>.internal(
  outboxedWrites,
  name: r'outboxedWritesProvider',
  debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product')
      ? null
      : _$outboxedWritesHash,
  dependencies: null,
  allTransitiveDependencies: null,
);