migration done

This commit is contained in:
Fabian Freund
2025-09-19 11:50:34 +02:00
parent b01012c76c
commit 79da47d11b
198 changed files with 17341 additions and 15711 deletions
@@ -6,28 +6,94 @@ part of 'app_initialization.dart';
// RiverpodGenerator
// **************************************************************************
// GENERATED CODE - DO NOT MODIFY BY HAND
// ignore_for_file: type=lint, type=warning
@ProviderFor(AppInitializationService)
const appInitializationServiceProvider = AppInitializationServiceProvider._();
final class AppInitializationServiceProvider
extends
$NotifierProvider<
AppInitializationService,
Result<({List<ErrorMessage> errors, bool initialized, String? stage})>
> {
const AppInitializationServiceProvider._()
: super(
from: null,
argument: null,
retry: null,
name: r'appInitializationServiceProvider',
isAutoDispose: false,
dependencies: null,
$allTransitiveDependencies: null,
);
@override
String debugGetCreateSourceHash() => _$appInitializationServiceHash();
@$internal
@override
AppInitializationService create() => AppInitializationService();
/// {@macro riverpod.override_with_value}
Override overrideWithValue(
Result<({List<ErrorMessage> errors, bool initialized, String? stage})>
value,
) {
return $ProviderOverride(
origin: this,
providerOverride:
$SyncValueProvider<
Result<
({List<ErrorMessage> errors, bool initialized, String? stage})
>
>(value),
);
}
}
String _$appInitializationServiceHash() =>
r'9966be978ea4990c56a3aba347e7979921bf6b2b';
/// See also [AppInitializationService].
@ProviderFor(AppInitializationService)
final appInitializationServiceProvider =
NotifierProvider<
AppInitializationService,
Result<({bool initialized, String? stage, List<ErrorMessage> errors})>
>.internal(
AppInitializationService.new,
name: r'appInitializationServiceProvider',
debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product')
? null
: _$appInitializationServiceHash,
dependencies: null,
allTransitiveDependencies: null,
);
typedef _$AppInitializationService =
Notifier<
Result<({bool initialized, String? stage, List<ErrorMessage> errors})>
>;
// 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
abstract class _$AppInitializationService
extends
$Notifier<
Result<({List<ErrorMessage> errors, bool initialized, String? stage})>
> {
Result<({List<ErrorMessage> errors, bool initialized, String? stage})>
build();
@$mustCallSuper
@override
void runBuild() {
final created = build();
final ref =
this.ref
as $Ref<
Result<
({List<ErrorMessage> errors, bool initialized, String? stage})
>,
Result<
({List<ErrorMessage> errors, bool initialized, String? stage})
>
>;
final element =
ref.element
as $ClassProviderElement<
AnyNotifier<
Result<
({List<ErrorMessage> errors, bool initialized, String? stage})
>,
Result<
({List<ErrorMessage> errors, bool initialized, String? stage})
>
>,
Result<
({List<ErrorMessage> errors, bool initialized, String? stage})
>,
Object?,
Object?
>;
element.handleValue(ref, created);
}
}
+53 -16
View File
@@ -6,22 +6,59 @@ part of 'generic_website.dart';
// RiverpodGenerator
// **************************************************************************
// GENERATED CODE - DO NOT MODIFY BY HAND
// ignore_for_file: type=lint, type=warning
@ProviderFor(GenericWebsiteService)
const genericWebsiteServiceProvider = GenericWebsiteServiceProvider._();
final class GenericWebsiteServiceProvider
extends $NotifierProvider<GenericWebsiteService, void> {
const GenericWebsiteServiceProvider._()
: super(
from: null,
argument: null,
retry: null,
name: r'genericWebsiteServiceProvider',
isAutoDispose: false,
dependencies: null,
$allTransitiveDependencies: null,
);
@override
String debugGetCreateSourceHash() => _$genericWebsiteServiceHash();
@$internal
@override
GenericWebsiteService create() => GenericWebsiteService();
/// {@macro riverpod.override_with_value}
Override overrideWithValue(void value) {
return $ProviderOverride(
origin: this,
providerOverride: $SyncValueProvider<void>(value),
);
}
}
String _$genericWebsiteServiceHash() =>
r'c20897405a4d31983a22d61e955ffb7430d06a54';
/// See also [GenericWebsiteService].
@ProviderFor(GenericWebsiteService)
final genericWebsiteServiceProvider =
NotifierProvider<GenericWebsiteService, void>.internal(
GenericWebsiteService.new,
name: r'genericWebsiteServiceProvider',
debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product')
? null
: _$genericWebsiteServiceHash,
dependencies: null,
allTransitiveDependencies: null,
);
typedef _$GenericWebsiteService = Notifier<void>;
// 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
abstract class _$GenericWebsiteService extends $Notifier<void> {
void build();
@$mustCallSuper
@override
void runBuild() {
build();
final ref = this.ref as $Ref<void, void>;
final element =
ref.element
as $ClassProviderElement<
AnyNotifier<void, void>,
void,
Object?,
Object?
>;
element.handleValue(ref, null);
}
}