upgrade deps and regenerate providers

This commit is contained in:
Fabian Freund
2026-01-01 10:48:59 +01:00
parent e9a6154158
commit 8848bd5d09
90 changed files with 499 additions and 585 deletions
@@ -10,11 +10,11 @@ part of 'bookmarks.dart';
// ignore_for_file: type=lint, type=warning
@ProviderFor(BookmarksSearch)
const bookmarksSearchProvider = BookmarksSearchProvider._();
final bookmarksSearchProvider = BookmarksSearchProvider._();
final class BookmarksSearchProvider
extends $StreamNotifierProvider<BookmarksSearch, Set<String>> {
const BookmarksSearchProvider._()
BookmarksSearchProvider._()
: super(
from: null,
argument: null,
@@ -40,7 +40,6 @@ abstract class _$BookmarksSearch extends $StreamNotifier<Set<String>> {
@$mustCallSuper
@override
void runBuild() {
final created = build();
final ref = this.ref as $Ref<AsyncValue<Set<String>>, Set<String>>;
final element =
ref.element
@@ -50,17 +49,17 @@ abstract class _$BookmarksSearch extends $StreamNotifier<Set<String>> {
Object?,
Object?
>;
element.handleValue(ref, created);
element.handleCreate(ref, build);
}
}
@ProviderFor(bookmarks)
const bookmarksProvider = BookmarksFamily._();
final bookmarksProvider = BookmarksFamily._();
final class BookmarksProvider<T extends BookmarkItem>
extends $FunctionalProvider<AsyncValue<T?>, AsyncValue<T?>, AsyncValue<T?>>
with $Provider<AsyncValue<T?>> {
const BookmarksProvider._({
BookmarksProvider._({
required BookmarksFamily super.from,
required String super.argument,
}) : super(
@@ -120,7 +119,7 @@ final class BookmarksProvider<T extends BookmarkItem>
String _$bookmarksHash() => r'dfa19aea04f352b8a6cefe35a0b283c9fddb214f';
final class BookmarksFamily extends $Family {
const BookmarksFamily._()
BookmarksFamily._()
: super(
retry: null,
name: r'bookmarksProvider',
@@ -155,11 +154,11 @@ final class BookmarksFamily extends $Family {
}
@ProviderFor(SeamlessBookmarks)
const seamlessBookmarksProvider = SeamlessBookmarksFamily._();
final seamlessBookmarksProvider = SeamlessBookmarksFamily._();
final class SeamlessBookmarksProvider
extends $NotifierProvider<SeamlessBookmarks, AsyncValue<BookmarkItem?>> {
const SeamlessBookmarksProvider._({
SeamlessBookmarksProvider._({
required SeamlessBookmarksFamily super.from,
required String super.argument,
}) : super(
@@ -214,7 +213,7 @@ final class SeamlessBookmarksFamily extends $Family
AsyncValue<BookmarkItem?>,
String
> {
const SeamlessBookmarksFamily._()
SeamlessBookmarksFamily._()
: super(
retry: null,
name: r'seamlessBookmarksProvider',
@@ -239,7 +238,6 @@ abstract class _$SeamlessBookmarks
@$mustCallSuper
@override
void runBuild() {
final created = build(_$args);
final ref =
this.ref as $Ref<AsyncValue<BookmarkItem?>, AsyncValue<BookmarkItem?>>;
final element =
@@ -250,6 +248,6 @@ abstract class _$SeamlessBookmarks
Object?,
Object?
>;
element.handleValue(ref, created);
element.handleCreate(ref, () => build(_$args));
}
}
@@ -10,11 +10,11 @@ part of 'bookmarks.dart';
// ignore_for_file: type=lint, type=warning
@ProviderFor(BookmarksRepository)
const bookmarksRepositoryProvider = BookmarksRepositoryProvider._();
final bookmarksRepositoryProvider = BookmarksRepositoryProvider._();
final class BookmarksRepositoryProvider
extends $AsyncNotifierProvider<BookmarksRepository, BookmarkItem?> {
const BookmarksRepositoryProvider._()
BookmarksRepositoryProvider._()
: super(
from: null,
argument: null,
@@ -41,7 +41,6 @@ abstract class _$BookmarksRepository extends $AsyncNotifier<BookmarkItem?> {
@$mustCallSuper
@override
void runBuild() {
final created = build();
final ref = this.ref as $Ref<AsyncValue<BookmarkItem?>, BookmarkItem?>;
final element =
ref.element
@@ -51,6 +50,6 @@ abstract class _$BookmarksRepository extends $AsyncNotifier<BookmarkItem?> {
Object?,
Object?
>;
element.handleValue(ref, created);
element.handleCreate(ref, build);
}
}
@@ -10,11 +10,11 @@ part of 'providers.dart';
// ignore_for_file: type=lint, type=warning
@ProviderFor(SelectedBangTrigger)
const selectedBangTriggerProvider = SelectedBangTriggerFamily._();
final selectedBangTriggerProvider = SelectedBangTriggerFamily._();
final class SelectedBangTriggerProvider
extends $NotifierProvider<SelectedBangTrigger, BangKey?> {
const SelectedBangTriggerProvider._({
SelectedBangTriggerProvider._({
required SelectedBangTriggerFamily super.from,
required String? super.argument,
}) : super(
@@ -70,7 +70,7 @@ final class SelectedBangTriggerFamily extends $Family
BangKey?,
String?
> {
const SelectedBangTriggerFamily._()
SelectedBangTriggerFamily._()
: super(
retry: null,
name: r'selectedBangTriggerProvider',
@@ -94,7 +94,6 @@ abstract class _$SelectedBangTrigger extends $Notifier<BangKey?> {
@$mustCallSuper
@override
void runBuild() {
final created = build(domain: _$args);
final ref = this.ref as $Ref<BangKey?, BangKey?>;
final element =
ref.element
@@ -104,16 +103,16 @@ abstract class _$SelectedBangTrigger extends $Notifier<BangKey?> {
Object?,
Object?
>;
element.handleValue(ref, created);
element.handleCreate(ref, () => build(domain: _$args));
}
}
@ProviderFor(SelectedBangData)
const selectedBangDataProvider = SelectedBangDataFamily._();
final selectedBangDataProvider = SelectedBangDataFamily._();
final class SelectedBangDataProvider
extends $NotifierProvider<SelectedBangData, BangData?> {
const SelectedBangDataProvider._({
SelectedBangDataProvider._({
required SelectedBangDataFamily super.from,
required String? super.argument,
}) : super(
@@ -168,7 +167,7 @@ final class SelectedBangDataFamily extends $Family
BangData?,
String?
> {
const SelectedBangDataFamily._()
SelectedBangDataFamily._()
: super(
retry: null,
name: r'selectedBangDataProvider',
@@ -192,7 +191,6 @@ abstract class _$SelectedBangData extends $Notifier<BangData?> {
@$mustCallSuper
@override
void runBuild() {
final created = build(domain: _$args);
final ref = this.ref as $Ref<BangData?, BangData?>;
final element =
ref.element
@@ -202,12 +200,12 @@ abstract class _$SelectedBangData extends $Notifier<BangData?> {
Object?,
Object?
>;
element.handleValue(ref, created);
element.handleCreate(ref, () => build(domain: _$args));
}
}
@ProviderFor(availableTabIds)
const availableTabIdsProvider = AvailableTabIdsFamily._();
final availableTabIdsProvider = AvailableTabIdsFamily._();
final class AvailableTabIdsProvider
extends
@@ -217,7 +215,7 @@ final class AvailableTabIdsProvider
EquatableValue<List<DefaultTabEntity>>
>
with $Provider<EquatableValue<List<DefaultTabEntity>>> {
const AvailableTabIdsProvider._({
AvailableTabIdsProvider._({
required AvailableTabIdsFamily super.from,
required ContainerFilter super.argument,
}) : super(
@@ -278,7 +276,7 @@ final class AvailableTabIdsFamily extends $Family
EquatableValue<List<DefaultTabEntity>>,
ContainerFilter
> {
const AvailableTabIdsFamily._()
AvailableTabIdsFamily._()
: super(
retry: null,
name: r'availableTabIdsProvider',
@@ -295,7 +293,7 @@ final class AvailableTabIdsFamily extends $Family
}
@ProviderFor(availableTabStates)
const availableTabStatesProvider = AvailableTabStatesFamily._();
final availableTabStatesProvider = AvailableTabStatesFamily._();
final class AvailableTabStatesProvider
extends
@@ -305,7 +303,7 @@ final class AvailableTabStatesProvider
EquatableValue<Map<String, TabState>>
>
with $Provider<EquatableValue<Map<String, TabState>>> {
const AvailableTabStatesProvider._({
AvailableTabStatesProvider._({
required AvailableTabStatesFamily super.from,
required ContainerFilter super.argument,
}) : super(
@@ -367,7 +365,7 @@ final class AvailableTabStatesFamily extends $Family
EquatableValue<Map<String, TabState>>,
ContainerFilter
> {
const AvailableTabStatesFamily._()
AvailableTabStatesFamily._()
: super(
retry: null,
name: r'availableTabStatesProvider',
@@ -384,7 +382,7 @@ final class AvailableTabStatesFamily extends $Family
}
@ProviderFor(fifoTabStates)
const fifoTabStatesProvider = FifoTabStatesProvider._();
final fifoTabStatesProvider = FifoTabStatesProvider._();
final class FifoTabStatesProvider
extends
@@ -394,7 +392,7 @@ final class FifoTabStatesProvider
EquatableValue<List<FifoTab>>
>
with $Provider<EquatableValue<List<FifoTab>>> {
const FifoTabStatesProvider._()
FifoTabStatesProvider._()
: super(
from: null,
argument: null,
@@ -433,7 +431,7 @@ final class FifoTabStatesProvider
String _$fifoTabStatesHash() => r'0320c28b328d814ed358ec6a10ec770a1ed634ad';
@ProviderFor(suggestedTabEntities)
const suggestedTabEntitiesProvider = SuggestedTabEntitiesFamily._();
final suggestedTabEntitiesProvider = SuggestedTabEntitiesFamily._();
final class SuggestedTabEntitiesProvider
extends
@@ -443,7 +441,7 @@ final class SuggestedTabEntitiesProvider
EquatableValue<List<TabEntity>>
>
with $Provider<EquatableValue<List<TabEntity>>> {
const SuggestedTabEntitiesProvider._({
SuggestedTabEntitiesProvider._({
required SuggestedTabEntitiesFamily super.from,
required String? super.argument,
}) : super(
@@ -502,7 +500,7 @@ String _$suggestedTabEntitiesHash() =>
final class SuggestedTabEntitiesFamily extends $Family
with $FunctionalFamilyOverride<EquatableValue<List<TabEntity>>, String?> {
const SuggestedTabEntitiesFamily._()
SuggestedTabEntitiesFamily._()
: super(
retry: null,
name: r'suggestedTabEntitiesProvider',
@@ -519,7 +517,7 @@ final class SuggestedTabEntitiesFamily extends $Family
}
@ProviderFor(seamlessFilteredTabEntities)
const seamlessFilteredTabEntitiesProvider =
final seamlessFilteredTabEntitiesProvider =
SeamlessFilteredTabEntitiesFamily._();
final class SeamlessFilteredTabEntitiesProvider
@@ -530,7 +528,7 @@ final class SeamlessFilteredTabEntitiesProvider
EquatableValue<List<TabEntity>>
>
with $Provider<EquatableValue<List<TabEntity>>> {
const SeamlessFilteredTabEntitiesProvider._({
SeamlessFilteredTabEntitiesProvider._({
required SeamlessFilteredTabEntitiesFamily super.from,
required ({
TabSearchPartition searchPartition,
@@ -614,7 +612,7 @@ final class SeamlessFilteredTabEntitiesFamily extends $Family
bool groupTrees,
})
> {
const SeamlessFilteredTabEntitiesFamily._()
SeamlessFilteredTabEntitiesFamily._()
: super(
retry: null,
name: r'seamlessFilteredTabEntitiesProvider',
@@ -641,7 +639,7 @@ final class SeamlessFilteredTabEntitiesFamily extends $Family
}
@ProviderFor(filteredTabPreviews)
const filteredTabPreviewsProvider = FilteredTabPreviewsFamily._();
final filteredTabPreviewsProvider = FilteredTabPreviewsFamily._();
final class FilteredTabPreviewsProvider
extends
@@ -651,7 +649,7 @@ final class FilteredTabPreviewsProvider
EquatableValue<List<TabPreview>>
>
with $Provider<EquatableValue<List<TabPreview>>> {
const FilteredTabPreviewsProvider._({
FilteredTabPreviewsProvider._({
required FilteredTabPreviewsFamily super.from,
required (TabSearchPartition, ContainerFilter) super.argument,
}) : super(
@@ -714,7 +712,7 @@ final class FilteredTabPreviewsFamily extends $Family
EquatableValue<List<TabPreview>>,
(TabSearchPartition, ContainerFilter)
> {
const FilteredTabPreviewsFamily._()
FilteredTabPreviewsFamily._()
: super(
retry: null,
name: r'filteredTabPreviewsProvider',
@@ -10,11 +10,11 @@ part of 'intent.dart';
// ignore_for_file: type=lint, type=warning
@ProviderFor(EngineBoundIntentStream)
const engineBoundIntentStreamProvider = EngineBoundIntentStreamProvider._();
final engineBoundIntentStreamProvider = EngineBoundIntentStreamProvider._();
final class EngineBoundIntentStreamProvider
extends $StreamNotifierProvider<EngineBoundIntentStream, SharedContent> {
const EngineBoundIntentStreamProvider._()
EngineBoundIntentStreamProvider._()
: super(
from: null,
argument: null,
@@ -42,7 +42,6 @@ abstract class _$EngineBoundIntentStream
@$mustCallSuper
@override
void runBuild() {
final created = build();
final ref = this.ref as $Ref<AsyncValue<SharedContent>, SharedContent>;
final element =
ref.element
@@ -52,6 +51,6 @@ abstract class _$EngineBoundIntentStream
Object?,
Object?
>;
element.handleValue(ref, created);
element.handleCreate(ref, build);
}
}
@@ -10,11 +10,11 @@ part of 'lifecycle.dart';
// ignore_for_file: type=lint, type=warning
@ProviderFor(BrowserViewLifecycle)
const browserViewLifecycleProvider = BrowserViewLifecycleProvider._();
final browserViewLifecycleProvider = BrowserViewLifecycleProvider._();
final class BrowserViewLifecycleProvider
extends $NotifierProvider<BrowserViewLifecycle, AppLifecycleState?> {
const BrowserViewLifecycleProvider._()
BrowserViewLifecycleProvider._()
: super(
from: null,
argument: null,
@@ -49,7 +49,6 @@ abstract class _$BrowserViewLifecycle extends $Notifier<AppLifecycleState?> {
@$mustCallSuper
@override
void runBuild() {
final created = build();
final ref = this.ref as $Ref<AppLifecycleState?, AppLifecycleState?>;
final element =
ref.element
@@ -59,6 +58,6 @@ abstract class _$BrowserViewLifecycle extends $Notifier<AppLifecycleState?> {
Object?,
Object?
>;
element.handleValue(ref, created);
element.handleCreate(ref, build);
}
}
@@ -10,11 +10,11 @@ part of 'browser_addon.dart';
// ignore_for_file: type=lint, type=warning
@ProviderFor(BrowserAddonService)
const browserAddonServiceProvider = BrowserAddonServiceProvider._();
final browserAddonServiceProvider = BrowserAddonServiceProvider._();
final class BrowserAddonServiceProvider
extends $NotifierProvider<BrowserAddonService, void> {
const BrowserAddonServiceProvider._()
BrowserAddonServiceProvider._()
: super(
from: null,
argument: null,
@@ -49,7 +49,6 @@ abstract class _$BrowserAddonService extends $Notifier<void> {
@$mustCallSuper
@override
void runBuild() {
build();
final ref = this.ref as $Ref<void, void>;
final element =
ref.element
@@ -59,6 +58,6 @@ abstract class _$BrowserAddonService extends $Notifier<void> {
Object?,
Object?
>;
element.handleValue(ref, null);
element.handleCreate(ref, build);
}
}
@@ -10,11 +10,11 @@ part of 'browser_data.dart';
// ignore_for_file: type=lint, type=warning
@ProviderFor(BrowserDataService)
const browserDataServiceProvider = BrowserDataServiceProvider._();
final browserDataServiceProvider = BrowserDataServiceProvider._();
final class BrowserDataServiceProvider
extends $NotifierProvider<BrowserDataService, void> {
const BrowserDataServiceProvider._()
BrowserDataServiceProvider._()
: super(
from: null,
argument: null,
@@ -49,7 +49,6 @@ abstract class _$BrowserDataService extends $Notifier<void> {
@$mustCallSuper
@override
void runBuild() {
build();
final ref = this.ref as $Ref<void, void>;
final element =
ref.element
@@ -59,6 +58,6 @@ abstract class _$BrowserDataService extends $Notifier<void> {
Object?,
Object?
>;
element.handleValue(ref, null);
element.handleCreate(ref, build);
}
}
@@ -10,12 +10,12 @@ part of 'engine_settings_replication.dart';
// ignore_for_file: type=lint, type=warning
@ProviderFor(EngineSettingsReplicationService)
const engineSettingsReplicationServiceProvider =
final engineSettingsReplicationServiceProvider =
EngineSettingsReplicationServiceProvider._();
final class EngineSettingsReplicationServiceProvider
extends $NotifierProvider<EngineSettingsReplicationService, void> {
const EngineSettingsReplicationServiceProvider._()
EngineSettingsReplicationServiceProvider._()
: super(
from: null,
argument: null,
@@ -51,7 +51,6 @@ abstract class _$EngineSettingsReplicationService extends $Notifier<void> {
@$mustCallSuper
@override
void runBuild() {
build();
final ref = this.ref as $Ref<void, void>;
final element =
ref.element
@@ -61,6 +60,6 @@ abstract class _$EngineSettingsReplicationService extends $Notifier<void> {
Object?,
Object?
>;
element.handleValue(ref, null);
element.handleCreate(ref, build);
}
}
@@ -10,11 +10,11 @@ part of 'proxy_settings_replication.dart';
// ignore_for_file: type=lint, type=warning
@ProviderFor(ProxySettingsReplication)
const proxySettingsReplicationProvider = ProxySettingsReplicationProvider._();
final proxySettingsReplicationProvider = ProxySettingsReplicationProvider._();
final class ProxySettingsReplicationProvider
extends $NotifierProvider<ProxySettingsReplication, void> {
const ProxySettingsReplicationProvider._()
ProxySettingsReplicationProvider._()
: super(
from: null,
argument: null,
@@ -49,7 +49,6 @@ abstract class _$ProxySettingsReplication extends $Notifier<void> {
@$mustCallSuper
@override
void runBuild() {
build();
final ref = this.ref as $Ref<void, void>;
final element =
ref.element
@@ -59,6 +58,6 @@ abstract class _$ProxySettingsReplication extends $Notifier<void> {
Object?,
Object?
>;
element.handleValue(ref, null);
element.handleCreate(ref, build);
}
}
@@ -10,12 +10,12 @@ part of 'tab_bar_dismissable.dart';
// ignore_for_file: type=lint, type=warning
@ProviderFor(TabBarDismissableController)
const tabBarDismissableControllerProvider =
final tabBarDismissableControllerProvider =
TabBarDismissableControllerProvider._();
final class TabBarDismissableControllerProvider
extends $NotifierProvider<TabBarDismissableController, bool> {
const TabBarDismissableControllerProvider._()
TabBarDismissableControllerProvider._()
: super(
from: null,
argument: null,
@@ -50,7 +50,6 @@ abstract class _$TabBarDismissableController extends $Notifier<bool> {
@$mustCallSuper
@override
void runBuild() {
final created = build();
final ref = this.ref as $Ref<bool, bool>;
final element =
ref.element
@@ -60,6 +59,6 @@ abstract class _$TabBarDismissableController extends $Notifier<bool> {
Object?,
Object?
>;
element.handleValue(ref, created);
element.handleCreate(ref, build);
}
}
@@ -10,11 +10,11 @@ part of 'tab_view_controllers.dart';
// ignore_for_file: type=lint, type=warning
@ProviderFor(TabSuggestionsController)
const tabSuggestionsControllerProvider = TabSuggestionsControllerProvider._();
final tabSuggestionsControllerProvider = TabSuggestionsControllerProvider._();
final class TabSuggestionsControllerProvider
extends $NotifierProvider<TabSuggestionsController, bool> {
const TabSuggestionsControllerProvider._()
TabSuggestionsControllerProvider._()
: super(
from: null,
argument: null,
@@ -49,7 +49,6 @@ abstract class _$TabSuggestionsController extends $Notifier<bool> {
@$mustCallSuper
@override
void runBuild() {
final created = build();
final ref = this.ref as $Ref<bool, bool>;
final element =
ref.element
@@ -59,16 +58,16 @@ abstract class _$TabSuggestionsController extends $Notifier<bool> {
Object?,
Object?
>;
element.handleValue(ref, created);
element.handleCreate(ref, build);
}
}
@ProviderFor(TabsViewModeController)
const tabsViewModeControllerProvider = TabsViewModeControllerProvider._();
final tabsViewModeControllerProvider = TabsViewModeControllerProvider._();
final class TabsViewModeControllerProvider
extends $NotifierProvider<TabsViewModeController, TabsViewMode> {
const TabsViewModeControllerProvider._()
TabsViewModeControllerProvider._()
: super(
from: null,
argument: null,
@@ -103,7 +102,6 @@ abstract class _$TabsViewModeController extends $Notifier<TabsViewMode> {
@$mustCallSuper
@override
void runBuild() {
final created = build();
final ref = this.ref as $Ref<TabsViewMode, TabsViewMode>;
final element =
ref.element
@@ -113,16 +111,16 @@ abstract class _$TabsViewModeController extends $Notifier<TabsViewMode> {
Object?,
Object?
>;
element.handleValue(ref, created);
element.handleCreate(ref, build);
}
}
@ProviderFor(TabsReorderableController)
const tabsReorderableControllerProvider = TabsReorderableControllerProvider._();
final tabsReorderableControllerProvider = TabsReorderableControllerProvider._();
final class TabsReorderableControllerProvider
extends $NotifierProvider<TabsReorderableController, bool> {
const TabsReorderableControllerProvider._()
TabsReorderableControllerProvider._()
: super(
from: null,
argument: null,
@@ -157,7 +155,6 @@ abstract class _$TabsReorderableController extends $Notifier<bool> {
@$mustCallSuper
@override
void runBuild() {
final created = build();
final ref = this.ref as $Ref<bool, bool>;
final element =
ref.element
@@ -167,6 +164,6 @@ abstract class _$TabsReorderableController extends $Notifier<bool> {
Object?,
Object?
>;
element.handleValue(ref, created);
element.handleCreate(ref, build);
}
}
@@ -10,11 +10,11 @@ part of 'find_in_page.dart';
// ignore_for_file: type=lint, type=warning
@ProviderFor(FindInPageRepository)
const findInPageRepositoryProvider = FindInPageRepositoryFamily._();
final findInPageRepositoryProvider = FindInPageRepositoryFamily._();
final class FindInPageRepositoryProvider
extends $NotifierProvider<FindInPageRepository, String?> {
const FindInPageRepositoryProvider._({
FindInPageRepositoryProvider._({
required FindInPageRepositoryFamily super.from,
required String? super.argument,
}) : super(
@@ -70,7 +70,7 @@ final class FindInPageRepositoryFamily extends $Family
String?,
String?
> {
const FindInPageRepositoryFamily._()
FindInPageRepositoryFamily._()
: super(
retry: null,
name: r'findInPageRepositoryProvider',
@@ -94,7 +94,6 @@ abstract class _$FindInPageRepository extends $Notifier<String?> {
@$mustCallSuper
@override
void runBuild() {
final created = build(_$args);
final ref = this.ref as $Ref<String?, String?>;
final element =
ref.element
@@ -104,6 +103,6 @@ abstract class _$FindInPageRepository extends $Notifier<String?> {
Object?,
Object?
>;
element.handleValue(ref, created);
element.handleCreate(ref, () => build(_$args));
}
}
@@ -10,11 +10,11 @@ part of 'find_in_page.dart';
// ignore_for_file: type=lint, type=warning
@ProviderFor(FindInPageController)
const findInPageControllerProvider = FindInPageControllerFamily._();
final findInPageControllerProvider = FindInPageControllerFamily._();
final class FindInPageControllerProvider
extends $NotifierProvider<FindInPageController, FindInPageState> {
const FindInPageControllerProvider._({
FindInPageControllerProvider._({
required FindInPageControllerFamily super.from,
required String super.argument,
}) : super(
@@ -70,7 +70,7 @@ final class FindInPageControllerFamily extends $Family
FindInPageState,
String
> {
const FindInPageControllerFamily._()
FindInPageControllerFamily._()
: super(
retry: null,
name: r'findInPageControllerProvider',
@@ -94,7 +94,6 @@ abstract class _$FindInPageController extends $Notifier<FindInPageState> {
@$mustCallSuper
@override
void runBuild() {
final created = build(_$args);
final ref = this.ref as $Ref<FindInPageState, FindInPageState>;
final element =
ref.element
@@ -104,6 +103,6 @@ abstract class _$FindInPageController extends $Notifier<FindInPageState> {
Object?,
Object?
>;
element.handleValue(ref, created);
element.handleCreate(ref, () => build(_$args));
}
}
@@ -11,12 +11,12 @@ part of 'providers.dart';
@ProviderFor(HistoryFilter)
@JsonPersist()
const historyFilterProvider = HistoryFilterProvider._();
final historyFilterProvider = HistoryFilterProvider._();
@JsonPersist()
final class HistoryFilterProvider
extends $NotifierProvider<HistoryFilter, HistoryFilterOptions> {
const HistoryFilterProvider._()
HistoryFilterProvider._()
: super(
from: null,
argument: null,
@@ -51,7 +51,6 @@ abstract class _$HistoryFilterBase extends $Notifier<HistoryFilterOptions> {
@$mustCallSuper
@override
void runBuild() {
final created = build();
final ref = this.ref as $Ref<HistoryFilterOptions, HistoryFilterOptions>;
final element =
ref.element
@@ -61,12 +60,12 @@ abstract class _$HistoryFilterBase extends $Notifier<HistoryFilterOptions> {
Object?,
Object?
>;
element.handleValue(ref, created);
element.handleCreate(ref, build);
}
}
@ProviderFor(browsingHistory)
const browsingHistoryProvider = BrowsingHistoryProvider._();
final browsingHistoryProvider = BrowsingHistoryProvider._();
final class BrowsingHistoryProvider
extends
@@ -76,7 +75,7 @@ final class BrowsingHistoryProvider
FutureOr<List<VisitInfo>>
>
with $FutureModifier<List<VisitInfo>>, $FutureProvider<List<VisitInfo>> {
const BrowsingHistoryProvider._()
BrowsingHistoryProvider._()
: super(
from: null,
argument: null,
@@ -10,11 +10,11 @@ part of 'history.dart';
// ignore_for_file: type=lint, type=warning
@ProviderFor(HistoryRepository)
const historyRepositoryProvider = HistoryRepositoryProvider._();
final historyRepositoryProvider = HistoryRepositoryProvider._();
final class HistoryRepositoryProvider
extends $NotifierProvider<HistoryRepository, void> {
const HistoryRepositoryProvider._()
HistoryRepositoryProvider._()
: super(
from: null,
argument: null,
@@ -48,7 +48,6 @@ abstract class _$HistoryRepository extends $Notifier<void> {
@$mustCallSuper
@override
void runBuild() {
build();
final ref = this.ref as $Ref<void, void>;
final element =
ref.element
@@ -58,6 +57,6 @@ abstract class _$HistoryRepository extends $Notifier<void> {
Object?,
Object?
>;
element.handleValue(ref, null);
element.handleCreate(ref, build);
}
}
@@ -10,11 +10,11 @@ part of 'preference_observer.dart';
// ignore_for_file: type=lint, type=warning
@ProviderFor(PreferenceChangeListener)
const preferenceChangeListenerProvider = PreferenceChangeListenerProvider._();
final preferenceChangeListenerProvider = PreferenceChangeListenerProvider._();
final class PreferenceChangeListenerProvider
extends $StreamNotifierProvider<PreferenceChangeListener, GeckoPref> {
const PreferenceChangeListenerProvider._()
PreferenceChangeListenerProvider._()
: super(
from: null,
argument: null,
@@ -41,7 +41,6 @@ abstract class _$PreferenceChangeListener extends $StreamNotifier<GeckoPref> {
@$mustCallSuper
@override
void runBuild() {
final created = build();
final ref = this.ref as $Ref<AsyncValue<GeckoPref>, GeckoPref>;
final element =
ref.element
@@ -51,16 +50,16 @@ abstract class _$PreferenceChangeListener extends $StreamNotifier<GeckoPref> {
Object?,
Object?
>;
element.handleValue(ref, created);
element.handleCreate(ref, build);
}
}
@ProviderFor(PreferenceFixator)
const preferenceFixatorProvider = PreferenceFixatorProvider._();
final preferenceFixatorProvider = PreferenceFixatorProvider._();
final class PreferenceFixatorProvider
extends $NotifierProvider<PreferenceFixator, Map<String, Object>> {
const PreferenceFixatorProvider._()
PreferenceFixatorProvider._()
: super(
from: null,
argument: null,
@@ -94,7 +93,6 @@ abstract class _$PreferenceFixator extends $Notifier<Map<String, Object>> {
@$mustCallSuper
@override
void runBuild() {
final created = build();
final ref = this.ref as $Ref<Map<String, Object>, Map<String, Object>>;
final element =
ref.element
@@ -104,6 +102,6 @@ abstract class _$PreferenceFixator extends $Notifier<Map<String, Object>> {
Object?,
Object?
>;
element.handleValue(ref, created);
element.handleCreate(ref, build);
}
}
@@ -10,7 +10,7 @@ part of 'preference_settings.dart';
// ignore_for_file: type=lint, type=warning
@ProviderFor(_preferenceSettingContent)
const _preferenceSettingContentProvider = _PreferenceSettingContentProvider._();
final _preferenceSettingContentProvider = _PreferenceSettingContentProvider._();
final class _PreferenceSettingContentProvider
extends
@@ -22,7 +22,7 @@ final class _PreferenceSettingContentProvider
with
$FutureModifier<Map<String, dynamic>>,
$FutureProvider<Map<String, dynamic>> {
const _PreferenceSettingContentProvider._()
_PreferenceSettingContentProvider._()
: super(
from: null,
argument: null,
@@ -52,7 +52,7 @@ String _$_preferenceSettingContentHash() =>
r'a8a61fdf8800cb7adb365c100409ddce09c574b1';
@ProviderFor(_preferenceSettingGroups)
const _preferenceSettingGroupsProvider = _PreferenceSettingGroupsFamily._();
final _preferenceSettingGroupsProvider = _PreferenceSettingGroupsFamily._();
final class _PreferenceSettingGroupsProvider
extends
@@ -64,7 +64,7 @@ final class _PreferenceSettingGroupsProvider
with
$FutureModifier<Map<String, PreferenceSettingGroup>>,
$FutureProvider<Map<String, PreferenceSettingGroup>> {
const _PreferenceSettingGroupsProvider._({
_PreferenceSettingGroupsProvider._({
required _PreferenceSettingGroupsFamily super.from,
required PreferencePartition super.argument,
}) : super(
@@ -118,7 +118,7 @@ final class _PreferenceSettingGroupsFamily extends $Family
FutureOr<Map<String, PreferenceSettingGroup>>,
PreferencePartition
> {
const _PreferenceSettingGroupsFamily._()
_PreferenceSettingGroupsFamily._()
: super(
retry: null,
name: r'_preferenceSettingGroupsProvider',
@@ -135,7 +135,7 @@ final class _PreferenceSettingGroupsFamily extends $Family
}
@ProviderFor(_preferenceSettingGroup)
const _preferenceSettingGroupProvider = _PreferenceSettingGroupFamily._();
final _preferenceSettingGroupProvider = _PreferenceSettingGroupFamily._();
final class _PreferenceSettingGroupProvider
extends
@@ -147,7 +147,7 @@ final class _PreferenceSettingGroupProvider
with
$FutureModifier<PreferenceSettingGroup>,
$FutureProvider<PreferenceSettingGroup> {
const _PreferenceSettingGroupProvider._({
_PreferenceSettingGroupProvider._({
required _PreferenceSettingGroupFamily super.from,
required (PreferencePartition, String) super.argument,
}) : super(
@@ -201,7 +201,7 @@ final class _PreferenceSettingGroupFamily extends $Family
FutureOr<PreferenceSettingGroup>,
(PreferencePartition, String)
> {
const _PreferenceSettingGroupFamily._()
_PreferenceSettingGroupFamily._()
: super(
retry: null,
name: r'_preferenceSettingGroupProvider',
@@ -223,7 +223,7 @@ final class _PreferenceSettingGroupFamily extends $Family
}
@ProviderFor(_PreferenceRepository)
const _preferenceRepositoryProvider = _PreferenceRepositoryProvider._();
final _preferenceRepositoryProvider = _PreferenceRepositoryProvider._();
final class _PreferenceRepositoryProvider
extends
@@ -231,7 +231,7 @@ final class _PreferenceRepositoryProvider
_PreferenceRepository,
Raw<Stream<Map<String, GeckoPref>>>
> {
const _PreferenceRepositoryProvider._()
_PreferenceRepositoryProvider._()
: super(
from: null,
argument: null,
@@ -269,7 +269,6 @@ abstract class _$PreferenceRepository
@$mustCallSuper
@override
void runBuild() {
final created = build();
final ref =
this.ref
as $Ref<
@@ -287,12 +286,12 @@ abstract class _$PreferenceRepository
Object?,
Object?
>;
element.handleValue(ref, created);
element.handleCreate(ref, build);
}
}
@ProviderFor(UnifiedPreferenceSettingsRepository)
const unifiedPreferenceSettingsRepositoryProvider =
final unifiedPreferenceSettingsRepositoryProvider =
UnifiedPreferenceSettingsRepositoryFamily._();
final class UnifiedPreferenceSettingsRepositoryProvider
@@ -301,7 +300,7 @@ final class UnifiedPreferenceSettingsRepositoryProvider
UnifiedPreferenceSettingsRepository,
Map<String, PreferenceSettingGroup>
> {
const UnifiedPreferenceSettingsRepositoryProvider._({
UnifiedPreferenceSettingsRepositoryProvider._({
required UnifiedPreferenceSettingsRepositoryFamily super.from,
required PreferencePartition super.argument,
}) : super(
@@ -352,7 +351,7 @@ final class UnifiedPreferenceSettingsRepositoryFamily extends $Family
Stream<Map<String, PreferenceSettingGroup>>,
PreferencePartition
> {
const UnifiedPreferenceSettingsRepositoryFamily._()
UnifiedPreferenceSettingsRepositoryFamily._()
: super(
retry: null,
name: r'unifiedPreferenceSettingsRepositoryProvider',
@@ -383,7 +382,6 @@ abstract class _$UnifiedPreferenceSettingsRepository
@$mustCallSuper
@override
void runBuild() {
final created = build(_$args);
final ref =
this.ref
as $Ref<
@@ -401,12 +399,12 @@ abstract class _$UnifiedPreferenceSettingsRepository
Object?,
Object?
>;
element.handleValue(ref, created);
element.handleCreate(ref, () => build(_$args));
}
}
@ProviderFor(PreferenceSettingsGroupRepository)
const preferenceSettingsGroupRepositoryProvider =
final preferenceSettingsGroupRepositoryProvider =
PreferenceSettingsGroupRepositoryFamily._();
final class PreferenceSettingsGroupRepositoryProvider
@@ -415,7 +413,7 @@ final class PreferenceSettingsGroupRepositoryProvider
PreferenceSettingsGroupRepository,
PreferenceSettingGroup
> {
const PreferenceSettingsGroupRepositoryProvider._({
PreferenceSettingsGroupRepositoryProvider._({
required PreferenceSettingsGroupRepositoryFamily super.from,
required (PreferencePartition, String) super.argument,
}) : super(
@@ -466,7 +464,7 @@ final class PreferenceSettingsGroupRepositoryFamily extends $Family
Stream<PreferenceSettingGroup>,
(PreferencePartition, String)
> {
const PreferenceSettingsGroupRepositoryFamily._()
PreferenceSettingsGroupRepositoryFamily._()
: super(
retry: null,
name: r'preferenceSettingsGroupRepositoryProvider',
@@ -500,7 +498,6 @@ abstract class _$PreferenceSettingsGroupRepository
@$mustCallSuper
@override
void runBuild() {
final created = build(_$args.$1, _$args.$2);
final ref =
this.ref
as $Ref<AsyncValue<PreferenceSettingGroup>, PreferenceSettingGroup>;
@@ -515,6 +512,6 @@ abstract class _$PreferenceSettingsGroupRepository
Object?,
Object?
>;
element.handleValue(ref, created);
element.handleCreate(ref, () => build(_$args.$1, _$args.$2));
}
}
@@ -10,7 +10,7 @@ part of 'readerable.dart';
// ignore_for_file: type=lint, type=warning
@ProviderFor(readerableService)
const readerableServiceProvider = ReaderableServiceProvider._();
final readerableServiceProvider = ReaderableServiceProvider._();
final class ReaderableServiceProvider
extends
@@ -20,7 +20,7 @@ final class ReaderableServiceProvider
GeckoReaderableService
>
with $Provider<GeckoReaderableService> {
const ReaderableServiceProvider._()
ReaderableServiceProvider._()
: super(
from: null,
argument: null,
@@ -57,13 +57,13 @@ final class ReaderableServiceProvider
String _$readerableServiceHash() => r'0c432ede496d85ed6a7d028af346b129d97f7502';
@ProviderFor(appearanceButtonVisibility)
const appearanceButtonVisibilityProvider =
final appearanceButtonVisibilityProvider =
AppearanceButtonVisibilityProvider._();
final class AppearanceButtonVisibilityProvider
extends $FunctionalProvider<AsyncValue<bool>, bool, Stream<bool>>
with $FutureModifier<bool>, $StreamProvider<bool> {
const AppearanceButtonVisibilityProvider._()
AppearanceButtonVisibilityProvider._()
: super(
from: null,
argument: null,
@@ -10,12 +10,12 @@ part of 'readerable.dart';
// ignore_for_file: type=lint, type=warning
@ProviderFor(ReaderableScreenController)
const readerableScreenControllerProvider =
final readerableScreenControllerProvider =
ReaderableScreenControllerProvider._();
final class ReaderableScreenControllerProvider
extends $AsyncNotifierProvider<ReaderableScreenController, void> {
const ReaderableScreenControllerProvider._()
ReaderableScreenControllerProvider._()
: super(
from: null,
argument: null,
@@ -42,7 +42,6 @@ abstract class _$ReaderableScreenController extends $AsyncNotifier<void> {
@$mustCallSuper
@override
void runBuild() {
build();
final ref = this.ref as $Ref<AsyncValue<void>, void>;
final element =
ref.element
@@ -52,6 +51,6 @@ abstract class _$ReaderableScreenController extends $AsyncNotifier<void> {
Object?,
Object?
>;
element.handleValue(ref, null);
element.handleCreate(ref, build);
}
}
@@ -10,11 +10,11 @@ part of 'engine_suggestions.dart';
// ignore_for_file: type=lint, type=warning
@ProviderFor(EngineSuggestions)
const engineSuggestionsProvider = EngineSuggestionsProvider._();
final engineSuggestionsProvider = EngineSuggestionsProvider._();
final class EngineSuggestionsProvider
extends $StreamNotifierProvider<EngineSuggestions, List<GeckoSuggestion>> {
const EngineSuggestionsProvider._()
EngineSuggestionsProvider._()
: super(
from: null,
argument: null,
@@ -41,7 +41,6 @@ abstract class _$EngineSuggestions
@$mustCallSuper
@override
void runBuild() {
final created = build();
final ref =
this.ref
as $Ref<AsyncValue<List<GeckoSuggestion>>, List<GeckoSuggestion>>;
@@ -56,12 +55,12 @@ abstract class _$EngineSuggestions
Object?,
Object?
>;
element.handleValue(ref, created);
element.handleCreate(ref, build);
}
}
@ProviderFor(engineHistorySuggestions)
const engineHistorySuggestionsProvider = EngineHistorySuggestionsProvider._();
final engineHistorySuggestionsProvider = EngineHistorySuggestionsProvider._();
final class EngineHistorySuggestionsProvider
extends
@@ -71,7 +70,7 @@ final class EngineHistorySuggestionsProvider
AsyncValue<List<GeckoSuggestion>>
>
with $Provider<AsyncValue<List<GeckoSuggestion>>> {
const EngineHistorySuggestionsProvider._()
EngineHistorySuggestionsProvider._()
: super(
from: null,
argument: null,
@@ -10,7 +10,7 @@ part of 'search_suggestions.dart';
// ignore_for_file: type=lint, type=warning
@ProviderFor(defaultSearchSuggestions)
const defaultSearchSuggestionsProvider = DefaultSearchSuggestionsProvider._();
final defaultSearchSuggestionsProvider = DefaultSearchSuggestionsProvider._();
final class DefaultSearchSuggestionsProvider
extends
@@ -20,7 +20,7 @@ final class DefaultSearchSuggestionsProvider
ISearchSuggestionProvider
>
with $Provider<ISearchSuggestionProvider> {
const DefaultSearchSuggestionsProvider._()
DefaultSearchSuggestionsProvider._()
: super(
from: null,
argument: null,
@@ -58,11 +58,11 @@ String _$defaultSearchSuggestionsHash() =>
r'6d7a387c7daeb790a4c9a5cdc105d2a2bdbacd2b';
@ProviderFor(SearchSuggestions)
const searchSuggestionsProvider = SearchSuggestionsFamily._();
final searchSuggestionsProvider = SearchSuggestionsFamily._();
final class SearchSuggestionsProvider
extends $StreamNotifierProvider<SearchSuggestions, List<String>> {
const SearchSuggestionsProvider._({
SearchSuggestionsProvider._({
required SearchSuggestionsFamily super.from,
required ISearchSuggestionProvider? super.argument,
}) : super(
@@ -109,7 +109,7 @@ final class SearchSuggestionsFamily extends $Family
Stream<List<String>>,
ISearchSuggestionProvider?
> {
const SearchSuggestionsFamily._()
SearchSuggestionsFamily._()
: super(
retry: null,
name: r'searchSuggestionsProvider',
@@ -134,7 +134,6 @@ abstract class _$SearchSuggestions extends $StreamNotifier<List<String>> {
@$mustCallSuper
@override
void runBuild() {
final created = build(suggestionsProvider: _$args);
final ref = this.ref as $Ref<AsyncValue<List<String>>, List<String>>;
final element =
ref.element
@@ -144,6 +143,6 @@ abstract class _$SearchSuggestions extends $StreamNotifier<List<String>> {
Object?,
Object?
>;
element.handleValue(ref, created);
element.handleCreate(ref, () => build(suggestionsProvider: _$args));
}
}
@@ -10,7 +10,7 @@ part of 'search_suggestions.dart';
// ignore_for_file: type=lint, type=warning
@ProviderFor(SearchSuggestionsRepository)
const searchSuggestionsRepositoryProvider =
final searchSuggestionsRepositoryProvider =
SearchSuggestionsRepositoryFamily._();
final class SearchSuggestionsRepositoryProvider
@@ -19,7 +19,7 @@ final class SearchSuggestionsRepositoryProvider
SearchSuggestionsRepository,
Raw<Stream<List<String>>>
> {
const SearchSuggestionsRepositoryProvider._({
SearchSuggestionsRepositoryProvider._({
required SearchSuggestionsRepositoryFamily super.from,
required ISearchSuggestionProvider super.argument,
}) : super(
@@ -76,7 +76,7 @@ final class SearchSuggestionsRepositoryFamily extends $Family
Raw<Stream<List<String>>>,
ISearchSuggestionProvider
> {
const SearchSuggestionsRepositoryFamily._()
SearchSuggestionsRepositoryFamily._()
: super(
retry: null,
name: r'searchSuggestionsRepositoryProvider',
@@ -107,7 +107,6 @@ abstract class _$SearchSuggestionsRepository
@$mustCallSuper
@override
void runBuild() {
final created = build(_$args);
final ref =
this.ref as $Ref<Raw<Stream<List<String>>>, Raw<Stream<List<String>>>>;
final element =
@@ -118,6 +117,6 @@ abstract class _$SearchSuggestionsRepository
Object?,
Object?
>;
element.handleValue(ref, created);
element.handleCreate(ref, () => build(_$args));
}
}
@@ -10,12 +10,12 @@ part of 'providers.dart';
// ignore_for_file: type=lint, type=warning
@ProviderFor(tabDatabase)
const tabDatabaseProvider = TabDatabaseProvider._();
final tabDatabaseProvider = TabDatabaseProvider._();
final class TabDatabaseProvider
extends $FunctionalProvider<TabDatabase, TabDatabase, TabDatabase>
with $Provider<TabDatabase> {
const TabDatabaseProvider._()
TabDatabaseProvider._()
: super(
from: null,
argument: null,
@@ -10,7 +10,7 @@ part of 'providers.dart';
// ignore_for_file: type=lint, type=warning
@ProviderFor(watchContainersWithCount)
const watchContainersWithCountProvider = WatchContainersWithCountProvider._();
final watchContainersWithCountProvider = WatchContainersWithCountProvider._();
final class WatchContainersWithCountProvider
extends
@@ -22,7 +22,7 @@ final class WatchContainersWithCountProvider
with
$FutureModifier<List<ContainerDataWithCount>>,
$StreamProvider<List<ContainerDataWithCount>> {
const WatchContainersWithCountProvider._()
WatchContainersWithCountProvider._()
: super(
from: null,
argument: null,
@@ -52,7 +52,7 @@ String _$watchContainersWithCountHash() =>
r'50d8e9b39cb589b0b5f50d79cbe20b8d10d7a504';
@ProviderFor(matchSortedContainersWithCount)
const matchSortedContainersWithCountProvider =
final matchSortedContainersWithCountProvider =
MatchSortedContainersWithCountFamily._();
final class MatchSortedContainersWithCountProvider
@@ -63,7 +63,7 @@ final class MatchSortedContainersWithCountProvider
AsyncValue<List<ContainerDataWithCount>>
>
with $Provider<AsyncValue<List<ContainerDataWithCount>>> {
const MatchSortedContainersWithCountProvider._({
MatchSortedContainersWithCountProvider._({
required MatchSortedContainersWithCountFamily super.from,
required String? super.argument,
}) : super(
@@ -126,7 +126,7 @@ final class MatchSortedContainersWithCountFamily extends $Family
AsyncValue<List<ContainerDataWithCount>>,
String?
> {
const MatchSortedContainersWithCountFamily._()
MatchSortedContainersWithCountFamily._()
: super(
retry: null,
name: r'matchSortedContainersWithCountProvider',
@@ -146,7 +146,7 @@ final class MatchSortedContainersWithCountFamily extends $Family
}
@ProviderFor(watchContainerTabIds)
const watchContainerTabIdsProvider = WatchContainerTabIdsFamily._();
final watchContainerTabIdsProvider = WatchContainerTabIdsFamily._();
final class WatchContainerTabIdsProvider
extends
@@ -156,7 +156,7 @@ final class WatchContainerTabIdsProvider
Stream<List<String>>
>
with $FutureModifier<List<String>>, $StreamProvider<List<String>> {
const WatchContainerTabIdsProvider._({
WatchContainerTabIdsProvider._({
required WatchContainerTabIdsFamily super.from,
required ContainerFilter super.argument,
}) : super(
@@ -205,7 +205,7 @@ String _$watchContainerTabIdsHash() =>
final class WatchContainerTabIdsFamily extends $Family
with $FunctionalFamilyOverride<Stream<List<String>>, ContainerFilter> {
const WatchContainerTabIdsFamily._()
WatchContainerTabIdsFamily._()
: super(
retry: null,
name: r'watchContainerTabIdsProvider',
@@ -222,7 +222,7 @@ final class WatchContainerTabIdsFamily extends $Family
}
@ProviderFor(watchgetTabsFifo)
const watchgetTabsFifoProvider = WatchgetTabsFifoProvider._();
final watchgetTabsFifoProvider = WatchgetTabsFifoProvider._();
final class WatchgetTabsFifoProvider
extends
@@ -232,7 +232,7 @@ final class WatchgetTabsFifoProvider
Stream<List<TabData>>
>
with $FutureModifier<List<TabData>>, $StreamProvider<List<TabData>> {
const WatchgetTabsFifoProvider._()
WatchgetTabsFifoProvider._()
: super(
from: null,
argument: null,
@@ -261,12 +261,12 @@ final class WatchgetTabsFifoProvider
String _$watchgetTabsFifoHash() => r'b0f58ca1688003ba46a55de1ca29d8253fc3de3a';
@ProviderFor(containerTabCount)
const containerTabCountProvider = ContainerTabCountFamily._();
final containerTabCountProvider = ContainerTabCountFamily._();
final class ContainerTabCountProvider
extends $FunctionalProvider<AsyncValue<int>, int, FutureOr<int>>
with $FutureModifier<int>, $FutureProvider<int> {
const ContainerTabCountProvider._({
ContainerTabCountProvider._({
required ContainerTabCountFamily super.from,
required ContainerFilter super.argument,
}) : super(
@@ -313,7 +313,7 @@ String _$containerTabCountHash() => r'df4008a9c589936c8a0699b082ab23087ae9b85f';
final class ContainerTabCountFamily extends $Family
with $FunctionalFamilyOverride<FutureOr<int>, ContainerFilter> {
const ContainerTabCountFamily._()
ContainerTabCountFamily._()
: super(
retry: null,
name: r'containerTabCountProvider',
@@ -330,7 +330,7 @@ final class ContainerTabCountFamily extends $Family
}
@ProviderFor(watchTabTrees)
const watchTabTreesProvider = WatchTabTreesProvider._();
final watchTabTreesProvider = WatchTabTreesProvider._();
final class WatchTabTreesProvider
extends
@@ -342,7 +342,7 @@ final class WatchTabTreesProvider
with
$FutureModifier<List<TabTreesResult>>,
$StreamProvider<List<TabTreesResult>> {
const WatchTabTreesProvider._()
WatchTabTreesProvider._()
: super(
from: null,
argument: null,
@@ -371,7 +371,7 @@ final class WatchTabTreesProvider
String _$watchTabTreesHash() => r'a2be591acb6818ea8675a12d90e6c4684a0448a8';
@ProviderFor(watchTabDescendants)
const watchTabDescendantsProvider = WatchTabDescendantsFamily._();
final watchTabDescendantsProvider = WatchTabDescendantsFamily._();
final class WatchTabDescendantsProvider
extends
@@ -383,7 +383,7 @@ final class WatchTabDescendantsProvider
with
$FutureModifier<Map<String, String?>>,
$StreamProvider<Map<String, String?>> {
const WatchTabDescendantsProvider._({
WatchTabDescendantsProvider._({
required WatchTabDescendantsFamily super.from,
required String super.argument,
}) : super(
@@ -432,7 +432,7 @@ String _$watchTabDescendantsHash() =>
final class WatchTabDescendantsFamily extends $Family
with $FunctionalFamilyOverride<Stream<Map<String, String?>>, String> {
const WatchTabDescendantsFamily._()
WatchTabDescendantsFamily._()
: super(
retry: null,
name: r'watchTabDescendantsProvider',
@@ -449,7 +449,7 @@ final class WatchTabDescendantsFamily extends $Family
}
@ProviderFor(watchContainerTabsData)
const watchContainerTabsDataProvider = WatchContainerTabsDataFamily._();
final watchContainerTabsDataProvider = WatchContainerTabsDataFamily._();
final class WatchContainerTabsDataProvider
extends
@@ -459,7 +459,7 @@ final class WatchContainerTabsDataProvider
Stream<List<TabData>>
>
with $FutureModifier<List<TabData>>, $StreamProvider<List<TabData>> {
const WatchContainerTabsDataProvider._({
WatchContainerTabsDataProvider._({
required WatchContainerTabsDataFamily super.from,
required String? super.argument,
}) : super(
@@ -509,7 +509,7 @@ String _$watchContainerTabsDataHash() =>
final class WatchContainerTabsDataFamily extends $Family
with $FunctionalFamilyOverride<Stream<List<TabData>>, String?> {
const WatchContainerTabsDataFamily._()
WatchContainerTabsDataFamily._()
: super(
retry: null,
name: r'watchContainerTabsDataProvider',
@@ -526,7 +526,7 @@ final class WatchContainerTabsDataFamily extends $Family
}
@ProviderFor(watchContainerData)
const watchContainerDataProvider = WatchContainerDataFamily._();
final watchContainerDataProvider = WatchContainerDataFamily._();
final class WatchContainerDataProvider
extends
@@ -536,7 +536,7 @@ final class WatchContainerDataProvider
Stream<ContainerData?>
>
with $FutureModifier<ContainerData?>, $StreamProvider<ContainerData?> {
const WatchContainerDataProvider._({
WatchContainerDataProvider._({
required WatchContainerDataFamily super.from,
required String super.argument,
}) : super(
@@ -585,7 +585,7 @@ String _$watchContainerDataHash() =>
final class WatchContainerDataFamily extends $Family
with $FunctionalFamilyOverride<Stream<ContainerData?>, String> {
const WatchContainerDataFamily._()
WatchContainerDataFamily._()
: super(
retry: null,
name: r'watchContainerDataProvider',
@@ -602,12 +602,12 @@ final class WatchContainerDataFamily extends $Family
}
@ProviderFor(watchContainerTabId)
const watchContainerTabIdProvider = WatchContainerTabIdFamily._();
final watchContainerTabIdProvider = WatchContainerTabIdFamily._();
final class WatchContainerTabIdProvider
extends $FunctionalProvider<AsyncValue<String?>, String?, Stream<String?>>
with $FutureModifier<String?>, $StreamProvider<String?> {
const WatchContainerTabIdProvider._({
WatchContainerTabIdProvider._({
required WatchContainerTabIdFamily super.from,
required String super.argument,
}) : super(
@@ -655,7 +655,7 @@ String _$watchContainerTabIdHash() =>
final class WatchContainerTabIdFamily extends $Family
with $FunctionalFamilyOverride<Stream<String?>, String> {
const WatchContainerTabIdFamily._()
WatchContainerTabIdFamily._()
: super(
retry: null,
name: r'watchContainerTabIdProvider',
@@ -672,7 +672,7 @@ final class WatchContainerTabIdFamily extends $Family
}
@ProviderFor(watchTabsContainerId)
const watchTabsContainerIdProvider = WatchTabsContainerIdFamily._();
final watchTabsContainerIdProvider = WatchTabsContainerIdFamily._();
final class WatchTabsContainerIdProvider
extends
@@ -684,7 +684,7 @@ final class WatchTabsContainerIdProvider
with
$FutureModifier<Map<String, String?>>,
$StreamProvider<Map<String, String?>> {
const WatchTabsContainerIdProvider._({
WatchTabsContainerIdProvider._({
required WatchTabsContainerIdFamily super.from,
required EquatableValue<List<String>> super.argument,
}) : super(
@@ -737,7 +737,7 @@ final class WatchTabsContainerIdFamily extends $Family
Stream<Map<String, String?>>,
EquatableValue<List<String>>
> {
const WatchTabsContainerIdFamily._()
WatchTabsContainerIdFamily._()
: super(
retry: null,
name: r'watchTabsContainerIdProvider',
@@ -754,7 +754,7 @@ final class WatchTabsContainerIdFamily extends $Family
}
@ProviderFor(watchAllAssignedSites)
const watchAllAssignedSitesProvider = WatchAllAssignedSitesProvider._();
final watchAllAssignedSitesProvider = WatchAllAssignedSitesProvider._();
final class WatchAllAssignedSitesProvider
extends
@@ -766,7 +766,7 @@ final class WatchAllAssignedSitesProvider
with
$FutureModifier<List<SiteAssignment>>,
$StreamProvider<List<SiteAssignment>> {
const WatchAllAssignedSitesProvider._()
WatchAllAssignedSitesProvider._()
: super(
from: null,
argument: null,
@@ -796,13 +796,13 @@ String _$watchAllAssignedSitesHash() =>
r'd755451be0ad7e03db36ba39c64f6f0b5c1d9ba3';
@ProviderFor(watchIsCurrentSiteAssignedToContainer)
const watchIsCurrentSiteAssignedToContainerProvider =
final watchIsCurrentSiteAssignedToContainerProvider =
WatchIsCurrentSiteAssignedToContainerProvider._();
final class WatchIsCurrentSiteAssignedToContainerProvider
extends $FunctionalProvider<AsyncValue<bool>, bool, Stream<bool>>
with $FutureModifier<bool>, $StreamProvider<bool> {
const WatchIsCurrentSiteAssignedToContainerProvider._()
WatchIsCurrentSiteAssignedToContainerProvider._()
: super(
from: null,
argument: null,
@@ -10,11 +10,11 @@ part of 'selected_container.dart';
// ignore_for_file: type=lint, type=warning
@ProviderFor(SelectedContainer)
const selectedContainerProvider = SelectedContainerProvider._();
final selectedContainerProvider = SelectedContainerProvider._();
final class SelectedContainerProvider
extends $NotifierProvider<SelectedContainer, String?> {
const SelectedContainerProvider._()
SelectedContainerProvider._()
: super(
from: null,
argument: null,
@@ -48,7 +48,6 @@ abstract class _$SelectedContainer extends $Notifier<String?> {
@$mustCallSuper
@override
void runBuild() {
final created = build();
final ref = this.ref as $Ref<String?, String?>;
final element =
ref.element
@@ -58,12 +57,12 @@ abstract class _$SelectedContainer extends $Notifier<String?> {
Object?,
Object?
>;
element.handleValue(ref, created);
element.handleCreate(ref, build);
}
}
@ProviderFor(selectedContainerData)
const selectedContainerDataProvider = SelectedContainerDataProvider._();
final selectedContainerDataProvider = SelectedContainerDataProvider._();
final class SelectedContainerDataProvider
extends
@@ -73,7 +72,7 @@ final class SelectedContainerDataProvider
Stream<ContainerData?>
>
with $FutureModifier<ContainerData?>, $StreamProvider<ContainerData?> {
const SelectedContainerDataProvider._()
SelectedContainerDataProvider._()
: super(
from: null,
argument: null,
@@ -103,12 +102,12 @@ String _$selectedContainerDataHash() =>
r'1ec86a82e1fc4823a867285f05036c903633a165';
@ProviderFor(selectedContainerTabCount)
const selectedContainerTabCountProvider = SelectedContainerTabCountProvider._();
final selectedContainerTabCountProvider = SelectedContainerTabCountProvider._();
final class SelectedContainerTabCountProvider
extends $FunctionalProvider<AsyncValue<int>, int, FutureOr<int>>
with $FutureModifier<int>, $FutureProvider<int> {
const SelectedContainerTabCountProvider._()
SelectedContainerTabCountProvider._()
: super(
from: null,
argument: null,
@@ -10,11 +10,11 @@ part of 'container.dart';
// ignore_for_file: type=lint, type=warning
@ProviderFor(ContainerRepository)
const containerRepositoryProvider = ContainerRepositoryProvider._();
final containerRepositoryProvider = ContainerRepositoryProvider._();
final class ContainerRepositoryProvider
extends $NotifierProvider<ContainerRepository, void> {
const ContainerRepositoryProvider._()
ContainerRepositoryProvider._()
: super(
from: null,
argument: null,
@@ -49,7 +49,6 @@ abstract class _$ContainerRepository extends $Notifier<void> {
@$mustCallSuper
@override
void runBuild() {
build();
final ref = this.ref as $Ref<void, void>;
final element =
ref.element
@@ -59,6 +58,6 @@ abstract class _$ContainerRepository extends $Notifier<void> {
Object?,
Object?
>;
element.handleValue(ref, null);
element.handleCreate(ref, build);
}
}
@@ -10,11 +10,11 @@ part of 'gecko_inference.dart';
// ignore_for_file: type=lint, type=warning
@ProviderFor(GeckoInferenceRepository)
const geckoInferenceRepositoryProvider = GeckoInferenceRepositoryProvider._();
final geckoInferenceRepositoryProvider = GeckoInferenceRepositoryProvider._();
final class GeckoInferenceRepositoryProvider
extends $NotifierProvider<GeckoInferenceRepository, void> {
const GeckoInferenceRepositoryProvider._()
GeckoInferenceRepositoryProvider._()
: super(
from: null,
argument: null,
@@ -49,7 +49,6 @@ abstract class _$GeckoInferenceRepository extends $Notifier<void> {
@$mustCallSuper
@override
void runBuild() {
build();
final ref = this.ref as $Ref<void, void>;
final element =
ref.element
@@ -59,17 +58,17 @@ abstract class _$GeckoInferenceRepository extends $Notifier<void> {
Object?,
Object?
>;
element.handleValue(ref, null);
element.handleCreate(ref, build);
}
}
@ProviderFor(containerTopic)
const containerTopicProvider = ContainerTopicFamily._();
final containerTopicProvider = ContainerTopicFamily._();
final class ContainerTopicProvider
extends $FunctionalProvider<AsyncValue<String?>, String?, FutureOr<String?>>
with $FutureModifier<String?>, $FutureProvider<String?> {
const ContainerTopicProvider._({
ContainerTopicProvider._({
required ContainerTopicFamily super.from,
required String super.argument,
}) : super(
@@ -116,7 +115,7 @@ String _$containerTopicHash() => r'2d04d50890c4ab0ddb70f3c1a2f45fd9ca56412d';
final class ContainerTopicFamily extends $Family
with $FunctionalFamilyOverride<FutureOr<String?>, String> {
const ContainerTopicFamily._()
ContainerTopicFamily._()
: super(
retry: null,
name: r'containerTopicProvider',
@@ -133,7 +132,7 @@ final class ContainerTopicFamily extends $Family
}
@ProviderFor(tabsTopic)
const tabsTopicProvider = TabsTopicFamily._();
final tabsTopicProvider = TabsTopicFamily._();
final class TabsTopicProvider
extends
@@ -143,7 +142,7 @@ final class TabsTopicProvider
AsyncValue<String?>
>
with $Provider<AsyncValue<String?>> {
const TabsTopicProvider._({
TabsTopicProvider._({
required TabsTopicFamily super.from,
required EquatableValue<Set<String>> super.argument,
}) : super(
@@ -203,7 +202,7 @@ final class TabsTopicFamily extends $Family
AsyncValue<String?>,
EquatableValue<Set<String>>
> {
const TabsTopicFamily._()
TabsTopicFamily._()
: super(
retry: null,
name: r'tabsTopicProvider',
@@ -220,12 +219,12 @@ final class TabsTopicFamily extends $Family
}
@ProviderFor(topicSuggestion)
const topicSuggestionProvider = TopicSuggestionFamily._();
final topicSuggestionProvider = TopicSuggestionFamily._();
final class TopicSuggestionProvider
extends $FunctionalProvider<AsyncValue<String?>, String?, FutureOr<String?>>
with $FutureModifier<String?>, $FutureProvider<String?> {
const TopicSuggestionProvider._({
TopicSuggestionProvider._({
required TopicSuggestionFamily super.from,
required EquatableValue<Set<String>> super.argument,
}) : super(
@@ -276,7 +275,7 @@ final class TopicSuggestionFamily extends $Family
FutureOr<String?>,
EquatableValue<Set<String>>
> {
const TopicSuggestionFamily._()
TopicSuggestionFamily._()
: super(
retry: null,
name: r'topicSuggestionProvider',
@@ -293,7 +292,7 @@ final class TopicSuggestionFamily extends $Family
}
@ProviderFor(suggestClusters)
const suggestClustersProvider = SuggestClustersProvider._();
final suggestClustersProvider = SuggestClustersProvider._();
final class SuggestClustersProvider
extends
@@ -305,7 +304,7 @@ final class SuggestClustersProvider
with
$FutureModifier<List<SuggestedContainer>?>,
$FutureProvider<List<SuggestedContainer>?> {
const SuggestClustersProvider._()
SuggestClustersProvider._()
: super(
from: null,
argument: null,
@@ -334,7 +333,7 @@ final class SuggestClustersProvider
String _$suggestClustersHash() => r'3fa169a2696954589078c7567b6245c708303232';
@ProviderFor(containerTabSuggestions)
const containerTabSuggestionsProvider = ContainerTabSuggestionsFamily._();
final containerTabSuggestionsProvider = ContainerTabSuggestionsFamily._();
final class ContainerTabSuggestionsProvider
extends
@@ -344,7 +343,7 @@ final class ContainerTabSuggestionsProvider
FutureOr<List<String>?>
>
with $FutureModifier<List<String>?>, $FutureProvider<List<String>?> {
const ContainerTabSuggestionsProvider._({
ContainerTabSuggestionsProvider._({
required ContainerTabSuggestionsFamily super.from,
required String? super.argument,
}) : super(
@@ -394,7 +393,7 @@ String _$containerTabSuggestionsHash() =>
final class ContainerTabSuggestionsFamily extends $Family
with $FunctionalFamilyOverride<FutureOr<List<String>?>, String?> {
const ContainerTabSuggestionsFamily._()
ContainerTabSuggestionsFamily._()
: super(
retry: null,
name: r'containerTabSuggestionsProvider',
@@ -10,11 +10,11 @@ part of 'tab.dart';
// ignore_for_file: type=lint, type=warning
@ProviderFor(TabDataRepository)
const tabDataRepositoryProvider = TabDataRepositoryProvider._();
final tabDataRepositoryProvider = TabDataRepositoryProvider._();
final class TabDataRepositoryProvider
extends $NotifierProvider<TabDataRepository, void> {
const TabDataRepositoryProvider._()
TabDataRepositoryProvider._()
: super(
from: null,
argument: null,
@@ -48,7 +48,6 @@ abstract class _$TabDataRepository extends $Notifier<void> {
@$mustCallSuper
@override
void runBuild() {
build();
final ref = this.ref as $Ref<void, void>;
final element =
ref.element
@@ -58,6 +57,6 @@ abstract class _$TabDataRepository extends $Notifier<void> {
Object?,
Object?
>;
element.handleValue(ref, null);
element.handleCreate(ref, build);
}
}
@@ -10,7 +10,7 @@ part of 'tab_search.dart';
// ignore_for_file: type=lint, type=warning
@ProviderFor(TabSearchRepository)
const tabSearchRepositoryProvider = TabSearchRepositoryFamily._();
final tabSearchRepositoryProvider = TabSearchRepositoryFamily._();
final class TabSearchRepositoryProvider
extends
@@ -18,7 +18,7 @@ final class TabSearchRepositoryProvider
TabSearchRepository,
({String query, List<TabQueryResult> results})?
> {
const TabSearchRepositoryProvider._({
TabSearchRepositoryProvider._({
required TabSearchRepositoryFamily super.from,
required TabSearchPartition super.argument,
}) : super(
@@ -66,7 +66,7 @@ final class TabSearchRepositoryFamily extends $Family
FutureOr<({String query, List<TabQueryResult> results})?>,
TabSearchPartition
> {
const TabSearchRepositoryFamily._()
TabSearchRepositoryFamily._()
: super(
retry: null,
name: r'tabSearchRepositoryProvider',
@@ -93,7 +93,6 @@ abstract class _$TabSearchRepository
@$mustCallSuper
@override
void runBuild() {
final created = build(_$args);
final ref =
this.ref
as $Ref<
@@ -111,6 +110,6 @@ abstract class _$TabSearchRepository
Object?,
Object?
>;
element.handleValue(ref, created);
element.handleCreate(ref, () => build(_$args));
}
}
@@ -10,11 +10,11 @@ part of 'container_topic.dart';
// ignore_for_file: type=lint, type=warning
@ProviderFor(ContainerTopicController)
const containerTopicControllerProvider = ContainerTopicControllerProvider._();
final containerTopicControllerProvider = ContainerTopicControllerProvider._();
final class ContainerTopicControllerProvider
extends $NotifierProvider<ContainerTopicController, AsyncValue<void>> {
const ContainerTopicControllerProvider._()
ContainerTopicControllerProvider._()
: super(
from: null,
argument: null,
@@ -49,7 +49,6 @@ abstract class _$ContainerTopicController extends $Notifier<AsyncValue<void>> {
@$mustCallSuper
@override
void runBuild() {
final created = build();
final ref = this.ref as $Ref<AsyncValue<void>, AsyncValue<void>>;
final element =
ref.element
@@ -59,6 +58,6 @@ abstract class _$ContainerTopicController extends $Notifier<AsyncValue<void>> {
Object?,
Object?
>;
element.handleValue(ref, created);
element.handleCreate(ref, build);
}
}