isMediaSyncingProvider top-level property
Provider<bool> — read directly, never call .when() on this
Implementation
final isMediaSyncingProvider = Provider<bool>((ref) {
return ref.watch(syncStateProvider) == SyncState.syncing;
});
Provider<bool> — read directly, never call .when() on this
final isMediaSyncingProvider = Provider<bool>((ref) {
return ref.watch(syncStateProvider) == SyncState.syncing;
});