mirror of
https://ghfast.top/https://github.com/StarCitizenToolBox/app.git
synced 2025-09-14 04:25:08 +08:00
feat: bump dependencies
This commit is contained in:
@@ -6,25 +6,59 @@ part of 'game_doctor_ui_model.dart';
|
||||
// RiverpodGenerator
|
||||
// **************************************************************************
|
||||
|
||||
String _$homeGameDoctorUIModelHash() =>
|
||||
r'b69a19a937ca375214a7c7e73b8288f577265625';
|
||||
|
||||
/// See also [HomeGameDoctorUIModel].
|
||||
@ProviderFor(HomeGameDoctorUIModel)
|
||||
final homeGameDoctorUIModelProvider =
|
||||
AutoDisposeNotifierProvider<
|
||||
HomeGameDoctorUIModel,
|
||||
HomeGameDoctorState
|
||||
>.internal(
|
||||
HomeGameDoctorUIModel.new,
|
||||
name: r'homeGameDoctorUIModelProvider',
|
||||
debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product')
|
||||
? null
|
||||
: _$homeGameDoctorUIModelHash,
|
||||
dependencies: null,
|
||||
allTransitiveDependencies: null,
|
||||
);
|
||||
const homeGameDoctorUIModelProvider = HomeGameDoctorUIModelProvider._();
|
||||
|
||||
final class HomeGameDoctorUIModelProvider
|
||||
extends $NotifierProvider<HomeGameDoctorUIModel, HomeGameDoctorState> {
|
||||
const HomeGameDoctorUIModelProvider._()
|
||||
: super(
|
||||
from: null,
|
||||
argument: null,
|
||||
retry: null,
|
||||
name: r'homeGameDoctorUIModelProvider',
|
||||
isAutoDispose: true,
|
||||
dependencies: null,
|
||||
$allTransitiveDependencies: null,
|
||||
);
|
||||
|
||||
@override
|
||||
String debugGetCreateSourceHash() => _$homeGameDoctorUIModelHash();
|
||||
|
||||
@$internal
|
||||
@override
|
||||
HomeGameDoctorUIModel create() => HomeGameDoctorUIModel();
|
||||
|
||||
/// {@macro riverpod.override_with_value}
|
||||
Override overrideWithValue(HomeGameDoctorState value) {
|
||||
return $ProviderOverride(
|
||||
origin: this,
|
||||
providerOverride: $SyncValueProvider<HomeGameDoctorState>(value),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
String _$homeGameDoctorUIModelHash() =>
|
||||
r'7035b501860e9d8c3fdfb91370311760120af115';
|
||||
|
||||
abstract class _$HomeGameDoctorUIModel extends $Notifier<HomeGameDoctorState> {
|
||||
HomeGameDoctorState build();
|
||||
@$mustCallSuper
|
||||
@override
|
||||
void runBuild() {
|
||||
final created = build();
|
||||
final ref = this.ref as $Ref<HomeGameDoctorState, HomeGameDoctorState>;
|
||||
final element =
|
||||
ref.element
|
||||
as $ClassProviderElement<
|
||||
AnyNotifier<HomeGameDoctorState, HomeGameDoctorState>,
|
||||
HomeGameDoctorState,
|
||||
Object?,
|
||||
Object?
|
||||
>;
|
||||
element.handleValue(ref, created);
|
||||
}
|
||||
}
|
||||
|
||||
typedef _$HomeGameDoctorUIModel = AutoDisposeNotifier<HomeGameDoctorState>;
|
||||
// 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
|
||||
|
Reference in New Issue
Block a user