// GENERATED CODE - DO NOT MODIFY BY HAND part of 'room_providers.dart'; // ************************************************************************** // RiverpodGenerator // ************************************************************************** // GENERATED CODE - DO NOT MODIFY BY HAND // ignore_for_file: type=lint, type=warning /// Watches all rooms with computed task stats (due count, cleanliness ratio). @ProviderFor(roomWithStatsList) final roomWithStatsListProvider = RoomWithStatsListProvider._(); /// Watches all rooms with computed task stats (due count, cleanliness ratio). final class RoomWithStatsListProvider extends $FunctionalProvider< AsyncValue>, List, Stream> > with $FutureModifier>, $StreamProvider> { /// Watches all rooms with computed task stats (due count, cleanliness ratio). RoomWithStatsListProvider._() : super( from: null, argument: null, retry: null, name: r'roomWithStatsListProvider', isAutoDispose: true, dependencies: null, $allTransitiveDependencies: null, ); @override String debugGetCreateSourceHash() => _$roomWithStatsListHash(); @$internal @override $StreamProviderElement> $createElement( $ProviderPointer pointer, ) => $StreamProviderElement(pointer); @override Stream> create(Ref ref) { return roomWithStatsList(ref); } } String _$roomWithStatsListHash() => r'8f6f8d6be77725c38be13e9420609638ec2868f9'; /// Async notifier for room mutation actions (create, update, delete, reorder). @ProviderFor(RoomActions) final roomActionsProvider = RoomActionsProvider._(); /// Async notifier for room mutation actions (create, update, delete, reorder). final class RoomActionsProvider extends $AsyncNotifierProvider { /// Async notifier for room mutation actions (create, update, delete, reorder). RoomActionsProvider._() : super( from: null, argument: null, retry: null, name: r'roomActionsProvider', isAutoDispose: true, dependencies: null, $allTransitiveDependencies: null, ); @override String debugGetCreateSourceHash() => _$roomActionsHash(); @$internal @override RoomActions create() => RoomActions(); } String _$roomActionsHash() => r'4004a7a39474cc4ea1e89b8533edaa217ac543ce'; /// Async notifier for room mutation actions (create, update, delete, reorder). abstract class _$RoomActions extends $AsyncNotifier { FutureOr build(); @$mustCallSuper @override void runBuild() { final ref = this.ref as $Ref, void>; final element = ref.element as $ClassProviderElement< AnyNotifier, void>, AsyncValue, Object?, Object? >; element.handleCreate(ref, build); } }