// GENERATED CODE - DO NOT MODIFY BY HAND part of 'logins.dart'; // ************************************************************************** // RiverpodGenerator // ************************************************************************** String _$fetchLoginHash() => r'cfe13f5152f1275e6eccc698142abfd98170d9b9'; /// 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)); } } /// See also [fetchLogin]. @ProviderFor(fetchLogin) const fetchLoginProvider = FetchLoginFamily(); /// See also [fetchLogin]. class FetchLoginFamily extends Family> { /// See also [fetchLogin]. const FetchLoginFamily(); /// See also [fetchLogin]. FetchLoginProvider call({ required Typed accountMasterRecordKey, }) { return FetchLoginProvider( accountMasterRecordKey: accountMasterRecordKey, ); } @override FetchLoginProvider getProviderOverride( covariant FetchLoginProvider provider, ) { return call( accountMasterRecordKey: provider.accountMasterRecordKey, ); } 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'fetchLoginProvider'; } /// See also [fetchLogin]. class FetchLoginProvider extends AutoDisposeFutureProvider { /// See also [fetchLogin]. FetchLoginProvider({ required Typed accountMasterRecordKey, }) : this._internal( (ref) => fetchLogin( ref as FetchLoginRef, accountMasterRecordKey: accountMasterRecordKey, ), from: fetchLoginProvider, name: r'fetchLoginProvider', debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') ? null : _$fetchLoginHash, dependencies: FetchLoginFamily._dependencies, allTransitiveDependencies: FetchLoginFamily._allTransitiveDependencies, accountMasterRecordKey: accountMasterRecordKey, ); FetchLoginProvider._internal( super._createNotifier, { required super.name, required super.dependencies, required super.allTransitiveDependencies, required super.debugGetCreateSourceHash, required super.from, required this.accountMasterRecordKey, }) : super.internal(); final Typed accountMasterRecordKey; @override Override overrideWith( FutureOr Function(FetchLoginRef provider) create, ) { return ProviderOverride( origin: this, override: FetchLoginProvider._internal( (ref) => create(ref as FetchLoginRef), from: from, name: null, dependencies: null, allTransitiveDependencies: null, debugGetCreateSourceHash: null, accountMasterRecordKey: accountMasterRecordKey, ), ); } @override AutoDisposeFutureProviderElement createElement() { return _FetchLoginProviderElement(this); } @override bool operator ==(Object other) { return other is FetchLoginProvider && other.accountMasterRecordKey == accountMasterRecordKey; } @override int get hashCode { var hash = _SystemHash.combine(0, runtimeType.hashCode); hash = _SystemHash.combine(hash, accountMasterRecordKey.hashCode); return _SystemHash.finish(hash); } } mixin FetchLoginRef on AutoDisposeFutureProviderRef { /// The parameter `accountMasterRecordKey` of this provider. Typed get accountMasterRecordKey; } class _FetchLoginProviderElement extends AutoDisposeFutureProviderElement with FetchLoginRef { _FetchLoginProviderElement(super.provider); @override Typed get accountMasterRecordKey => (origin as FetchLoginProvider).accountMasterRecordKey; } String _$loginsHash() => r'2660f71bb7903464187a93fba5c07e22041e8c40'; /// See also [Logins]. @ProviderFor(Logins) final loginsProvider = AutoDisposeAsyncNotifierProvider.internal( Logins.new, name: r'loginsProvider', debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product') ? null : _$loginsHash, dependencies: null, allTransitiveDependencies: null, ); typedef _$Logins = AutoDisposeAsyncNotifier; // ignore_for_file: type=lint // ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member