upgrade deps

This commit is contained in:
Fabian Freund
2026-06-12 05:58:11 +02:00
parent c5909d4433
commit 2d13c1b065
145 changed files with 355 additions and 419 deletions
@@ -48,7 +48,7 @@ abstract class _$ContainerProxyRepository extends $Notifier<void> {
void build();
@$mustCallSuper
@override
void runBuild() {
WhenComplete runBuild() {
final ref = this.ref as $Ref<void, void>;
final element =
ref.element
@@ -58,6 +58,6 @@ abstract class _$ContainerProxyRepository extends $Notifier<void> {
Object?,
Object?
>;
element.handleCreate(ref, build);
return element.handleCreate(ref, build);
}
}
@@ -51,7 +51,7 @@ abstract class _$SingboxProxyCredentialsRepository extends $Notifier<void> {
void build();
@$mustCallSuper
@override
void runBuild() {
WhenComplete runBuild() {
final ref = this.ref as $Ref<void, void>;
final element =
ref.element
@@ -61,6 +61,6 @@ abstract class _$SingboxProxyCredentialsRepository extends $Notifier<void> {
Object?,
Object?
>;
element.handleCreate(ref, build);
return element.handleCreate(ref, build);
}
}
@@ -52,7 +52,7 @@ abstract class _$SingboxProxyLogs extends $Notifier<List<ProxyLogMessage>> {
List<ProxyLogMessage> build();
@$mustCallSuper
@override
void runBuild() {
WhenComplete runBuild() {
final ref = this.ref as $Ref<List<ProxyLogMessage>, List<ProxyLogMessage>>;
final element =
ref.element
@@ -62,6 +62,6 @@ abstract class _$SingboxProxyLogs extends $Notifier<List<ProxyLogMessage>> {
Object?,
Object?
>;
element.handleCreate(ref, build);
return element.handleCreate(ref, build);
}
}
@@ -46,7 +46,7 @@ abstract class _$SingboxProxyProfilesRepository
Stream<List<ProxyProfile>> build();
@$mustCallSuper
@override
void runBuild() {
WhenComplete runBuild() {
final ref =
this.ref as $Ref<AsyncValue<List<ProxyProfile>>, List<ProxyProfile>>;
final element =
@@ -57,6 +57,6 @@ abstract class _$SingboxProxyProfilesRepository
Object?,
Object?
>;
element.handleCreate(ref, build);
return element.handleCreate(ref, build);
}
}
@@ -94,7 +94,7 @@ abstract class _$SingboxProxyRuntimeRepository
FutureOr<SingboxProxyRuntimeState> build();
@$mustCallSuper
@override
void runBuild() {
WhenComplete runBuild() {
final ref =
this.ref
as $Ref<
@@ -112,6 +112,6 @@ abstract class _$SingboxProxyRuntimeRepository
Object?,
Object?
>;
element.handleCreate(ref, build);
return element.handleCreate(ref, build);
}
}
@@ -48,7 +48,7 @@ abstract class _$ProxyInputConsumer extends $Notifier<void> {
void build();
@$mustCallSuper
@override
void runBuild() {
WhenComplete runBuild() {
final ref = this.ref as $Ref<void, void>;
final element =
ref.element
@@ -58,6 +58,6 @@ abstract class _$ProxyInputConsumer extends $Notifier<void> {
Object?,
Object?
>;
element.handleCreate(ref, build);
return element.handleCreate(ref, build);
}
}
@@ -71,7 +71,7 @@ abstract class _$ProxyLatencyResults
Map<ProxyConnectionId, AsyncValue<ProxyLatencyData>> build();
@$mustCallSuper
@override
void runBuild() {
WhenComplete runBuild() {
final ref =
this.ref
as $Ref<
@@ -89,6 +89,6 @@ abstract class _$ProxyLatencyResults
Object?,
Object?
>;
element.handleCreate(ref, build);
return element.handleCreate(ref, build);
}
}
@@ -101,7 +101,7 @@ abstract class _$SingboxProxyEndpointSync extends $Notifier<void> {
void build();
@$mustCallSuper
@override
void runBuild() {
WhenComplete runBuild() {
final ref = this.ref as $Ref<void, void>;
final element =
ref.element
@@ -111,6 +111,6 @@ abstract class _$SingboxProxyEndpointSync extends $Notifier<void> {
Object?,
Object?
>;
element.handleCreate(ref, build);
return element.handleCreate(ref, build);
}
}
@@ -277,7 +277,7 @@ abstract class _$ProxyProfileDraft extends $Notifier<ProxyProfileDraftState> {
ProxyProfileDraftState build({String? profileId, ProxyProfileSeed? seed});
@$mustCallSuper
@override
void runBuild() {
WhenComplete runBuild() {
final ref =
this.ref as $Ref<ProxyProfileDraftState, ProxyProfileDraftState>;
final element =
@@ -288,7 +288,7 @@ abstract class _$ProxyProfileDraft extends $Notifier<ProxyProfileDraftState> {
Object?,
Object?
>;
element.handleCreate(
return element.handleCreate(
ref,
() => build(profileId: _$args.profileId, seed: _$args.seed),
);