// GENERATED CODE - DO NOT MODIFY BY HAND part of 'post_list.dart'; // ************************************************************************** // RiverpodGenerator // ************************************************************************** String _$postListNotifierHash() => r'2ca4f3cfbbcd04f3cc32e7f7bd511a5811042829'; /// Copied from Dart SDK class _SystemHash { _SystemHash._(); static int combine(int hash, int value) { // ignore: parameter_assignments hash = 0x1fffffff & (hash + value); // ignore: parameter_assignments hash = 0x1fffffff & (hash + ((0x0007ffff & hash) << 10)); return hash ^ (hash >> 6); } static int finish(int hash) { // ignore: parameter_assignments hash = 0x1fffffff & (hash + ((0x03ffffff & hash) << 3)); // ignore: parameter_assignments hash = hash ^ (hash >> 11); return 0x1fffffff & (hash + ((0x00003fff & hash) << 15)); } } abstract class _$PostListNotifier extends BuildlessAutoDisposeAsyncNotifier> { late final String? pubName; late final int? type; late final List? categories; late final List? tags; FutureOr> build( String? pubName, { int? type, List? categories, List? tags, }); } /// See also [PostListNotifier]. @ProviderFor(PostListNotifier) const postListNotifierProvider = PostListNotifierFamily(); /// See also [PostListNotifier]. class PostListNotifierFamily extends Family>> { /// See also [PostListNotifier]. const PostListNotifierFamily(); /// See also [PostListNotifier]. PostListNotifierProvider call( String? pubName, { int? type, List? categories, List? tags, }) { return PostListNotifierProvider( pubName, type: type, categories: categories, tags: tags, ); } @override PostListNotifierProvider getProviderOverride( covariant PostListNotifierProvider provider, ) { return call( provider.pubName, type: provider.type, categories: provider.categories, tags: provider.tags, ); } static const Iterable? _dependencies = null; @override Iterable? get dependencies => _dependencies; static const Iterable? _allTransitiveDependencies = null; @override Iterable? get allTransitiveDependencies => _allTransitiveDependencies; @override String? get name => r'postListNotifierProvider'; } /// See also [PostListNotifier]. class PostListNotifierProvider extends AutoDisposeAsyncNotifierProviderImpl< PostListNotifier, CursorPagingData > { /// See also [PostListNotifier]. PostListNotifierProvider( String? pubName, { int? type, List? categories, List? tags, }) : this._internal( () => PostListNotifier() ..pubName = pubName ..type = type ..categories = categories ..tags = tags, from: postListNotifierProvider, name: r'postListNotifierProvider', debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') ? null : _$postListNotifierHash, dependencies: PostListNotifierFamily._dependencies, allTransitiveDependencies: PostListNotifierFamily._allTransitiveDependencies, pubName: pubName, type: type, categories: categories, tags: tags, ); PostListNotifierProvider._internal( super._createNotifier, { required super.name, required super.dependencies, required super.allTransitiveDependencies, required super.debugGetCreateSourceHash, required super.from, required this.pubName, required this.type, required this.categories, required this.tags, }) : super.internal(); final String? pubName; final int? type; final List? categories; final List? tags; @override FutureOr> runNotifierBuild( covariant PostListNotifier notifier, ) { return notifier.build( pubName, type: type, categories: categories, tags: tags, ); } @override Override overrideWith(PostListNotifier Function() create) { return ProviderOverride( origin: this, override: PostListNotifierProvider._internal( () => create() ..pubName = pubName ..type = type ..categories = categories ..tags = tags, from: from, name: null, dependencies: null, allTransitiveDependencies: null, debugGetCreateSourceHash: null, pubName: pubName, type: type, categories: categories, tags: tags, ), ); } @override AutoDisposeAsyncNotifierProviderElement< PostListNotifier, CursorPagingData > createElement() { return _PostListNotifierProviderElement(this); } @override bool operator ==(Object other) { return other is PostListNotifierProvider && other.pubName == pubName && other.type == type && other.categories == categories && other.tags == tags; } @override int get hashCode { var hash = _SystemHash.combine(0, runtimeType.hashCode); hash = _SystemHash.combine(hash, pubName.hashCode); hash = _SystemHash.combine(hash, type.hashCode); hash = _SystemHash.combine(hash, categories.hashCode); hash = _SystemHash.combine(hash, tags.hashCode); return _SystemHash.finish(hash); } } @Deprecated('Will be removed in 3.0. Use Ref instead') // ignore: unused_element mixin PostListNotifierRef on AutoDisposeAsyncNotifierProviderRef> { /// The parameter `pubName` of this provider. String? get pubName; /// The parameter `type` of this provider. int? get type; /// The parameter `categories` of this provider. List? get categories; /// The parameter `tags` of this provider. List? get tags; } class _PostListNotifierProviderElement extends AutoDisposeAsyncNotifierProviderElement< PostListNotifier, CursorPagingData > with PostListNotifierRef { _PostListNotifierProviderElement(super.provider); @override String? get pubName => (origin as PostListNotifierProvider).pubName; @override int? get type => (origin as PostListNotifierProvider).type; @override List? get categories => (origin as PostListNotifierProvider).categories; @override List? get tags => (origin as PostListNotifierProvider).tags; } // ignore_for_file: type=lint // ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member, deprecated_member_use_from_same_package