🐛 Fix route bug
This commit is contained in:
@@ -10,7 +10,7 @@ part of 'app_secrets.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(customAppSecrets)
|
||||
const customAppSecretsProvider = CustomAppSecretsFamily._();
|
||||
final customAppSecretsProvider = CustomAppSecretsFamily._();
|
||||
|
||||
final class CustomAppSecretsProvider
|
||||
extends
|
||||
@@ -22,7 +22,7 @@ final class CustomAppSecretsProvider
|
||||
with
|
||||
$FutureModifier<List<CustomAppSecret>>,
|
||||
$FutureProvider<List<CustomAppSecret>> {
|
||||
const CustomAppSecretsProvider._({
|
||||
CustomAppSecretsProvider._({
|
||||
required CustomAppSecretsFamily super.from,
|
||||
required (String, String, String) super.argument,
|
||||
}) : super(
|
||||
@@ -74,7 +74,7 @@ final class CustomAppSecretsFamily extends $Family
|
||||
FutureOr<List<CustomAppSecret>>,
|
||||
(String, String, String)
|
||||
> {
|
||||
const CustomAppSecretsFamily._()
|
||||
CustomAppSecretsFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'customAppSecretsProvider',
|
||||
|
||||
@@ -10,7 +10,7 @@ part of 'apps.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(customApp)
|
||||
const customAppProvider = CustomAppFamily._();
|
||||
final customAppProvider = CustomAppFamily._();
|
||||
|
||||
final class CustomAppProvider
|
||||
extends
|
||||
@@ -20,7 +20,7 @@ final class CustomAppProvider
|
||||
FutureOr<CustomApp>
|
||||
>
|
||||
with $FutureModifier<CustomApp>, $FutureProvider<CustomApp> {
|
||||
const CustomAppProvider._({
|
||||
CustomAppProvider._({
|
||||
required CustomAppFamily super.from,
|
||||
required (String, String, String) super.argument,
|
||||
}) : super(
|
||||
@@ -71,7 +71,7 @@ final class CustomAppFamily extends $Family
|
||||
FutureOr<CustomApp>,
|
||||
(String, String, String)
|
||||
> {
|
||||
const CustomAppFamily._()
|
||||
CustomAppFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'customAppProvider',
|
||||
@@ -94,7 +94,7 @@ final class CustomAppFamily extends $Family
|
||||
}
|
||||
|
||||
@ProviderFor(customApps)
|
||||
const customAppsProvider = CustomAppsFamily._();
|
||||
final customAppsProvider = CustomAppsFamily._();
|
||||
|
||||
final class CustomAppsProvider
|
||||
extends
|
||||
@@ -104,7 +104,7 @@ final class CustomAppsProvider
|
||||
FutureOr<List<CustomApp>>
|
||||
>
|
||||
with $FutureModifier<List<CustomApp>>, $FutureProvider<List<CustomApp>> {
|
||||
const CustomAppsProvider._({
|
||||
CustomAppsProvider._({
|
||||
required CustomAppsFamily super.from,
|
||||
required (String, String) super.argument,
|
||||
}) : super(
|
||||
@@ -153,7 +153,7 @@ String _$customAppsHash() => r'450bedaf4220b8963cb44afeb14d4c0e80f01b11';
|
||||
final class CustomAppsFamily extends $Family
|
||||
with
|
||||
$FunctionalFamilyOverride<FutureOr<List<CustomApp>>, (String, String)> {
|
||||
const CustomAppsFamily._()
|
||||
CustomAppsFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'customAppsProvider',
|
||||
|
||||
@@ -10,7 +10,7 @@ part of 'bot_keys.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(botKeys)
|
||||
const botKeysProvider = BotKeysFamily._();
|
||||
final botKeysProvider = BotKeysFamily._();
|
||||
|
||||
final class BotKeysProvider
|
||||
extends
|
||||
@@ -22,7 +22,7 @@ final class BotKeysProvider
|
||||
with
|
||||
$FutureModifier<List<SnAccountApiKey>>,
|
||||
$FutureProvider<List<SnAccountApiKey>> {
|
||||
const BotKeysProvider._({
|
||||
BotKeysProvider._({
|
||||
required BotKeysFamily super.from,
|
||||
required (String, String, String) super.argument,
|
||||
}) : super(
|
||||
@@ -74,7 +74,7 @@ final class BotKeysFamily extends $Family
|
||||
FutureOr<List<SnAccountApiKey>>,
|
||||
(String, String, String)
|
||||
> {
|
||||
const BotKeysFamily._()
|
||||
BotKeysFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'botKeysProvider',
|
||||
|
||||
@@ -10,7 +10,7 @@ part of 'bots.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(bots)
|
||||
const botsProvider = BotsFamily._();
|
||||
final botsProvider = BotsFamily._();
|
||||
|
||||
final class BotsProvider
|
||||
extends
|
||||
@@ -20,7 +20,7 @@ final class BotsProvider
|
||||
FutureOr<List<Bot>>
|
||||
>
|
||||
with $FutureModifier<List<Bot>>, $FutureProvider<List<Bot>> {
|
||||
const BotsProvider._({
|
||||
BotsProvider._({
|
||||
required BotsFamily super.from,
|
||||
required (String, String) super.argument,
|
||||
}) : super(
|
||||
@@ -67,7 +67,7 @@ String _$botsHash() => r'15cefd5781350eb68208a342e85fcb0b9e0e3269';
|
||||
|
||||
final class BotsFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<List<Bot>>, (String, String)> {
|
||||
const BotsFamily._()
|
||||
BotsFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'botsProvider',
|
||||
|
||||
@@ -10,7 +10,7 @@ part of 'edit_app.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(customApp)
|
||||
const customAppProvider = CustomAppFamily._();
|
||||
final customAppProvider = CustomAppFamily._();
|
||||
|
||||
final class CustomAppProvider
|
||||
extends
|
||||
@@ -20,7 +20,7 @@ final class CustomAppProvider
|
||||
FutureOr<CustomApp?>
|
||||
>
|
||||
with $FutureModifier<CustomApp?>, $FutureProvider<CustomApp?> {
|
||||
const CustomAppProvider._({
|
||||
CustomAppProvider._({
|
||||
required CustomAppFamily super.from,
|
||||
required (String, String, String) super.argument,
|
||||
}) : super(
|
||||
@@ -71,7 +71,7 @@ final class CustomAppFamily extends $Family
|
||||
FutureOr<CustomApp?>,
|
||||
(String, String, String)
|
||||
> {
|
||||
const CustomAppFamily._()
|
||||
CustomAppFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'customAppProvider',
|
||||
|
||||
@@ -10,12 +10,12 @@ part of 'edit_bot.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(bot)
|
||||
const botProvider = BotFamily._();
|
||||
final botProvider = BotFamily._();
|
||||
|
||||
final class BotProvider
|
||||
extends $FunctionalProvider<AsyncValue<Bot?>, Bot?, FutureOr<Bot?>>
|
||||
with $FutureModifier<Bot?>, $FutureProvider<Bot?> {
|
||||
const BotProvider._({
|
||||
BotProvider._({
|
||||
required BotFamily super.from,
|
||||
required (String, String, String) super.argument,
|
||||
}) : super(
|
||||
@@ -62,7 +62,7 @@ String _$botHash() => r'7bec47bb2a4061a5babc6d6d19c3d4c320c91188';
|
||||
|
||||
final class BotFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<Bot?>, (String, String, String)> {
|
||||
const BotFamily._()
|
||||
BotFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'botProvider',
|
||||
|
||||
@@ -10,7 +10,7 @@ part of 'edit_project.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(devProject)
|
||||
const devProjectProvider = DevProjectFamily._();
|
||||
final devProjectProvider = DevProjectFamily._();
|
||||
|
||||
final class DevProjectProvider
|
||||
extends
|
||||
@@ -20,7 +20,7 @@ final class DevProjectProvider
|
||||
FutureOr<DevProject?>
|
||||
>
|
||||
with $FutureModifier<DevProject?>, $FutureProvider<DevProject?> {
|
||||
const DevProjectProvider._({
|
||||
DevProjectProvider._({
|
||||
required DevProjectFamily super.from,
|
||||
required (String, String) super.argument,
|
||||
}) : super(
|
||||
@@ -68,7 +68,7 @@ String _$devProjectHash() => r'd92be3f5cdc510c2a377615ed5c70622a6842bf2';
|
||||
|
||||
final class DevProjectFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<DevProject?>, (String, String)> {
|
||||
const DevProjectFamily._()
|
||||
DevProjectFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'devProjectProvider',
|
||||
|
||||
@@ -10,7 +10,7 @@ part of 'hub.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(developerStats)
|
||||
const developerStatsProvider = DeveloperStatsFamily._();
|
||||
final developerStatsProvider = DeveloperStatsFamily._();
|
||||
|
||||
final class DeveloperStatsProvider
|
||||
extends
|
||||
@@ -20,7 +20,7 @@ final class DeveloperStatsProvider
|
||||
FutureOr<DeveloperStats?>
|
||||
>
|
||||
with $FutureModifier<DeveloperStats?>, $FutureProvider<DeveloperStats?> {
|
||||
const DeveloperStatsProvider._({
|
||||
DeveloperStatsProvider._({
|
||||
required DeveloperStatsFamily super.from,
|
||||
required String? super.argument,
|
||||
}) : super(
|
||||
@@ -68,7 +68,7 @@ String _$developerStatsHash() => r'45546f29ec7cd1a9c3a4e0f4e39275e78bf34755';
|
||||
|
||||
final class DeveloperStatsFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<DeveloperStats?>, String?> {
|
||||
const DeveloperStatsFamily._()
|
||||
DeveloperStatsFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'developerStatsProvider',
|
||||
@@ -85,7 +85,7 @@ final class DeveloperStatsFamily extends $Family
|
||||
}
|
||||
|
||||
@ProviderFor(developers)
|
||||
const developersProvider = DevelopersProvider._();
|
||||
final developersProvider = DevelopersProvider._();
|
||||
|
||||
final class DevelopersProvider
|
||||
extends
|
||||
@@ -97,7 +97,7 @@ final class DevelopersProvider
|
||||
with
|
||||
$FutureModifier<List<SnDeveloper>>,
|
||||
$FutureProvider<List<SnDeveloper>> {
|
||||
const DevelopersProvider._()
|
||||
DevelopersProvider._()
|
||||
: super(
|
||||
from: null,
|
||||
argument: null,
|
||||
@@ -126,7 +126,7 @@ final class DevelopersProvider
|
||||
String _$developersHash() => r'252341098617ac398ce133994453f318dd3edbd2';
|
||||
|
||||
@ProviderFor(devProjects)
|
||||
const devProjectsProvider = DevProjectsFamily._();
|
||||
final devProjectsProvider = DevProjectsFamily._();
|
||||
|
||||
final class DevProjectsProvider
|
||||
extends
|
||||
@@ -136,7 +136,7 @@ final class DevProjectsProvider
|
||||
FutureOr<List<DevProject>>
|
||||
>
|
||||
with $FutureModifier<List<DevProject>>, $FutureProvider<List<DevProject>> {
|
||||
const DevProjectsProvider._({
|
||||
DevProjectsProvider._({
|
||||
required DevProjectsFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -184,7 +184,7 @@ String _$devProjectsHash() => r'715b395bebda785d38691ffee3b88e50b498c91a';
|
||||
|
||||
final class DevProjectsFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<List<DevProject>>, String> {
|
||||
const DevProjectsFamily._()
|
||||
DevProjectsFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'devProjectsProvider',
|
||||
|
||||
Reference in New Issue
Block a user