mirror of
https://github.com/kodjodevf/mangayomi.git
synced 2026-04-21 16:01:58 +00:00
137 lines
3.5 KiB
Dart
137 lines
3.5 KiB
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'anilist.dart';
|
|
|
|
// **************************************************************************
|
|
// RiverpodGenerator
|
|
// **************************************************************************
|
|
|
|
String _$anilistHash() => r'8a637a067e4c70f07fa18a97ed3dc364320569db';
|
|
|
|
/// 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 _$Anilist extends BuildlessAutoDisposeNotifier<dynamic> {
|
|
late final int syncId;
|
|
late final bool? isManga;
|
|
|
|
dynamic build({
|
|
required int syncId,
|
|
bool? isManga,
|
|
});
|
|
}
|
|
|
|
/// See also [Anilist].
|
|
@ProviderFor(Anilist)
|
|
const anilistProvider = AnilistFamily();
|
|
|
|
/// See also [Anilist].
|
|
class AnilistFamily extends Family<dynamic> {
|
|
/// See also [Anilist].
|
|
const AnilistFamily();
|
|
|
|
/// See also [Anilist].
|
|
AnilistProvider call({
|
|
required int syncId,
|
|
bool? isManga,
|
|
}) {
|
|
return AnilistProvider(
|
|
syncId: syncId,
|
|
isManga: isManga,
|
|
);
|
|
}
|
|
|
|
@override
|
|
AnilistProvider getProviderOverride(
|
|
covariant AnilistProvider provider,
|
|
) {
|
|
return call(
|
|
syncId: provider.syncId,
|
|
isManga: provider.isManga,
|
|
);
|
|
}
|
|
|
|
static const Iterable<ProviderOrFamily>? _dependencies = null;
|
|
|
|
@override
|
|
Iterable<ProviderOrFamily>? get dependencies => _dependencies;
|
|
|
|
static const Iterable<ProviderOrFamily>? _allTransitiveDependencies = null;
|
|
|
|
@override
|
|
Iterable<ProviderOrFamily>? get allTransitiveDependencies =>
|
|
_allTransitiveDependencies;
|
|
|
|
@override
|
|
String? get name => r'anilistProvider';
|
|
}
|
|
|
|
/// See also [Anilist].
|
|
class AnilistProvider
|
|
extends AutoDisposeNotifierProviderImpl<Anilist, dynamic> {
|
|
/// See also [Anilist].
|
|
AnilistProvider({
|
|
required this.syncId,
|
|
this.isManga,
|
|
}) : super.internal(
|
|
() => Anilist()
|
|
..syncId = syncId
|
|
..isManga = isManga,
|
|
from: anilistProvider,
|
|
name: r'anilistProvider',
|
|
debugGetCreateSourceHash:
|
|
const bool.fromEnvironment('dart.vm.product')
|
|
? null
|
|
: _$anilistHash,
|
|
dependencies: AnilistFamily._dependencies,
|
|
allTransitiveDependencies: AnilistFamily._allTransitiveDependencies,
|
|
);
|
|
|
|
final int syncId;
|
|
final bool? isManga;
|
|
|
|
@override
|
|
bool operator ==(Object other) {
|
|
return other is AnilistProvider &&
|
|
other.syncId == syncId &&
|
|
other.isManga == isManga;
|
|
}
|
|
|
|
@override
|
|
int get hashCode {
|
|
var hash = _SystemHash.combine(0, runtimeType.hashCode);
|
|
hash = _SystemHash.combine(hash, syncId.hashCode);
|
|
hash = _SystemHash.combine(hash, isManga.hashCode);
|
|
|
|
return _SystemHash.finish(hash);
|
|
}
|
|
|
|
@override
|
|
dynamic runNotifierBuild(
|
|
covariant Anilist notifier,
|
|
) {
|
|
return notifier.build(
|
|
syncId: syncId,
|
|
isManga: isManga,
|
|
);
|
|
}
|
|
}
|
|
// ignore_for_file: unnecessary_raw_strings, subtype_of_sealed_class, invalid_use_of_internal_member, do_not_use_environment, prefer_const_constructors, public_member_api_docs, avoid_private_typedef_functions
|