🐛 Fix route bug
This commit is contained in:
@@ -10,7 +10,7 @@ part of 'activity_rpc.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(presenceActivities)
|
||||
const presenceActivitiesProvider = PresenceActivitiesFamily._();
|
||||
final presenceActivitiesProvider = PresenceActivitiesFamily._();
|
||||
|
||||
final class PresenceActivitiesProvider
|
||||
extends
|
||||
@@ -22,7 +22,7 @@ final class PresenceActivitiesProvider
|
||||
with
|
||||
$FutureModifier<List<SnPresenceActivity>>,
|
||||
$FutureProvider<List<SnPresenceActivity>> {
|
||||
const PresenceActivitiesProvider._({
|
||||
PresenceActivitiesProvider._({
|
||||
required PresenceActivitiesFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -71,7 +71,7 @@ String _$presenceActivitiesHash() =>
|
||||
|
||||
final class PresenceActivitiesFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<List<SnPresenceActivity>>, String> {
|
||||
const PresenceActivitiesFamily._()
|
||||
PresenceActivitiesFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'presenceActivitiesProvider',
|
||||
|
||||
@@ -10,11 +10,11 @@ part of 'call.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(CallNotifier)
|
||||
const callProvider = CallNotifierProvider._();
|
||||
final callProvider = CallNotifierProvider._();
|
||||
|
||||
final class CallNotifierProvider
|
||||
extends $NotifierProvider<CallNotifier, CallState> {
|
||||
const CallNotifierProvider._()
|
||||
CallNotifierProvider._()
|
||||
: super(
|
||||
from: null,
|
||||
argument: null,
|
||||
@@ -48,7 +48,6 @@ abstract class _$CallNotifier extends $Notifier<CallState> {
|
||||
@$mustCallSuper
|
||||
@override
|
||||
void runBuild() {
|
||||
final created = build();
|
||||
final ref = this.ref as $Ref<CallState, CallState>;
|
||||
final element =
|
||||
ref.element
|
||||
@@ -58,6 +57,6 @@ abstract class _$CallNotifier extends $Notifier<CallState> {
|
||||
Object?,
|
||||
Object?
|
||||
>;
|
||||
element.handleValue(ref, created);
|
||||
element.handleCreate(ref, build);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -10,11 +10,11 @@ part of 'chat_online_count.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(ChatOnlineCountNotifier)
|
||||
const chatOnlineCountProvider = ChatOnlineCountNotifierFamily._();
|
||||
final chatOnlineCountProvider = ChatOnlineCountNotifierFamily._();
|
||||
|
||||
final class ChatOnlineCountNotifierProvider
|
||||
extends $AsyncNotifierProvider<ChatOnlineCountNotifier, int> {
|
||||
const ChatOnlineCountNotifierProvider._({
|
||||
ChatOnlineCountNotifierProvider._({
|
||||
required ChatOnlineCountNotifierFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -63,7 +63,7 @@ final class ChatOnlineCountNotifierFamily extends $Family
|
||||
FutureOr<int>,
|
||||
String
|
||||
> {
|
||||
const ChatOnlineCountNotifierFamily._()
|
||||
ChatOnlineCountNotifierFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'chatOnlineCountProvider',
|
||||
@@ -87,7 +87,6 @@ abstract class _$ChatOnlineCountNotifier extends $AsyncNotifier<int> {
|
||||
@$mustCallSuper
|
||||
@override
|
||||
void runBuild() {
|
||||
final created = build(_$args);
|
||||
final ref = this.ref as $Ref<AsyncValue<int>, int>;
|
||||
final element =
|
||||
ref.element
|
||||
@@ -97,6 +96,6 @@ abstract class _$ChatOnlineCountNotifier extends $AsyncNotifier<int> {
|
||||
Object?,
|
||||
Object?
|
||||
>;
|
||||
element.handleValue(ref, created);
|
||||
element.handleCreate(ref, () => build(_$args));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -10,11 +10,11 @@ part of 'chat_room.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(ChatRoomJoinedNotifier)
|
||||
const chatRoomJoinedProvider = ChatRoomJoinedNotifierProvider._();
|
||||
final chatRoomJoinedProvider = ChatRoomJoinedNotifierProvider._();
|
||||
|
||||
final class ChatRoomJoinedNotifierProvider
|
||||
extends $AsyncNotifierProvider<ChatRoomJoinedNotifier, List<SnChatRoom>> {
|
||||
const ChatRoomJoinedNotifierProvider._()
|
||||
ChatRoomJoinedNotifierProvider._()
|
||||
: super(
|
||||
from: null,
|
||||
argument: null,
|
||||
@@ -42,7 +42,6 @@ abstract class _$ChatRoomJoinedNotifier
|
||||
@$mustCallSuper
|
||||
@override
|
||||
void runBuild() {
|
||||
final created = build();
|
||||
final ref =
|
||||
this.ref as $Ref<AsyncValue<List<SnChatRoom>>, List<SnChatRoom>>;
|
||||
final element =
|
||||
@@ -53,16 +52,16 @@ abstract class _$ChatRoomJoinedNotifier
|
||||
Object?,
|
||||
Object?
|
||||
>;
|
||||
element.handleValue(ref, created);
|
||||
element.handleCreate(ref, build);
|
||||
}
|
||||
}
|
||||
|
||||
@ProviderFor(ChatRoomNotifier)
|
||||
const chatRoomProvider = ChatRoomNotifierFamily._();
|
||||
final chatRoomProvider = ChatRoomNotifierFamily._();
|
||||
|
||||
final class ChatRoomNotifierProvider
|
||||
extends $AsyncNotifierProvider<ChatRoomNotifier, SnChatRoom?> {
|
||||
const ChatRoomNotifierProvider._({
|
||||
ChatRoomNotifierProvider._({
|
||||
required ChatRoomNotifierFamily super.from,
|
||||
required String? super.argument,
|
||||
}) : super(
|
||||
@@ -109,7 +108,7 @@ final class ChatRoomNotifierFamily extends $Family
|
||||
FutureOr<SnChatRoom?>,
|
||||
String?
|
||||
> {
|
||||
const ChatRoomNotifierFamily._()
|
||||
ChatRoomNotifierFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'chatRoomProvider',
|
||||
@@ -133,7 +132,6 @@ abstract class _$ChatRoomNotifier extends $AsyncNotifier<SnChatRoom?> {
|
||||
@$mustCallSuper
|
||||
@override
|
||||
void runBuild() {
|
||||
final created = build(_$args);
|
||||
final ref = this.ref as $Ref<AsyncValue<SnChatRoom?>, SnChatRoom?>;
|
||||
final element =
|
||||
ref.element
|
||||
@@ -143,16 +141,16 @@ abstract class _$ChatRoomNotifier extends $AsyncNotifier<SnChatRoom?> {
|
||||
Object?,
|
||||
Object?
|
||||
>;
|
||||
element.handleValue(ref, created);
|
||||
element.handleCreate(ref, () => build(_$args));
|
||||
}
|
||||
}
|
||||
|
||||
@ProviderFor(ChatRoomIdentityNotifier)
|
||||
const chatRoomIdentityProvider = ChatRoomIdentityNotifierFamily._();
|
||||
final chatRoomIdentityProvider = ChatRoomIdentityNotifierFamily._();
|
||||
|
||||
final class ChatRoomIdentityNotifierProvider
|
||||
extends $AsyncNotifierProvider<ChatRoomIdentityNotifier, SnChatMember?> {
|
||||
const ChatRoomIdentityNotifierProvider._({
|
||||
ChatRoomIdentityNotifierProvider._({
|
||||
required ChatRoomIdentityNotifierFamily super.from,
|
||||
required String? super.argument,
|
||||
}) : super(
|
||||
@@ -201,7 +199,7 @@ final class ChatRoomIdentityNotifierFamily extends $Family
|
||||
FutureOr<SnChatMember?>,
|
||||
String?
|
||||
> {
|
||||
const ChatRoomIdentityNotifierFamily._()
|
||||
ChatRoomIdentityNotifierFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'chatRoomIdentityProvider',
|
||||
@@ -226,7 +224,6 @@ abstract class _$ChatRoomIdentityNotifier
|
||||
@$mustCallSuper
|
||||
@override
|
||||
void runBuild() {
|
||||
final created = build(_$args);
|
||||
final ref = this.ref as $Ref<AsyncValue<SnChatMember?>, SnChatMember?>;
|
||||
final element =
|
||||
ref.element
|
||||
@@ -236,12 +233,12 @@ abstract class _$ChatRoomIdentityNotifier
|
||||
Object?,
|
||||
Object?
|
||||
>;
|
||||
element.handleValue(ref, created);
|
||||
element.handleCreate(ref, () => build(_$args));
|
||||
}
|
||||
}
|
||||
|
||||
@ProviderFor(chatroomInvites)
|
||||
const chatroomInvitesProvider = ChatroomInvitesProvider._();
|
||||
final chatroomInvitesProvider = ChatroomInvitesProvider._();
|
||||
|
||||
final class ChatroomInvitesProvider
|
||||
extends
|
||||
@@ -253,7 +250,7 @@ final class ChatroomInvitesProvider
|
||||
with
|
||||
$FutureModifier<List<SnChatMember>>,
|
||||
$FutureProvider<List<SnChatMember>> {
|
||||
const ChatroomInvitesProvider._()
|
||||
ChatroomInvitesProvider._()
|
||||
: super(
|
||||
from: null,
|
||||
argument: null,
|
||||
|
||||
@@ -10,11 +10,11 @@ part of 'chat_subscribe.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(ChatSubscribeNotifier)
|
||||
const chatSubscribeProvider = ChatSubscribeNotifierFamily._();
|
||||
final chatSubscribeProvider = ChatSubscribeNotifierFamily._();
|
||||
|
||||
final class ChatSubscribeNotifierProvider
|
||||
extends $NotifierProvider<ChatSubscribeNotifier, List<SnChatMember>> {
|
||||
const ChatSubscribeNotifierProvider._({
|
||||
ChatSubscribeNotifierProvider._({
|
||||
required ChatSubscribeNotifierFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -59,7 +59,7 @@ final class ChatSubscribeNotifierProvider
|
||||
}
|
||||
|
||||
String _$chatSubscribeNotifierHash() =>
|
||||
r'7d720afd7e9f1bc4cc0e4308415e60a4781157db';
|
||||
r'b7624ae45ace2944a88f8b4d14ddce556c236371';
|
||||
|
||||
final class ChatSubscribeNotifierFamily extends $Family
|
||||
with
|
||||
@@ -70,7 +70,7 @@ final class ChatSubscribeNotifierFamily extends $Family
|
||||
List<SnChatMember>,
|
||||
String
|
||||
> {
|
||||
const ChatSubscribeNotifierFamily._()
|
||||
ChatSubscribeNotifierFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'chatSubscribeProvider',
|
||||
@@ -94,7 +94,6 @@ abstract class _$ChatSubscribeNotifier extends $Notifier<List<SnChatMember>> {
|
||||
@$mustCallSuper
|
||||
@override
|
||||
void runBuild() {
|
||||
final created = build(_$args);
|
||||
final ref = this.ref as $Ref<List<SnChatMember>, List<SnChatMember>>;
|
||||
final element =
|
||||
ref.element
|
||||
@@ -104,6 +103,6 @@ abstract class _$ChatSubscribeNotifier extends $Notifier<List<SnChatMember>> {
|
||||
Object?,
|
||||
Object?
|
||||
>;
|
||||
element.handleValue(ref, created);
|
||||
element.handleCreate(ref, () => build(_$args));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -10,11 +10,11 @@ part of 'chat_summary.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(ChatUnreadCountNotifier)
|
||||
const chatUnreadCountProvider = ChatUnreadCountNotifierProvider._();
|
||||
final chatUnreadCountProvider = ChatUnreadCountNotifierProvider._();
|
||||
|
||||
final class ChatUnreadCountNotifierProvider
|
||||
extends $AsyncNotifierProvider<ChatUnreadCountNotifier, int> {
|
||||
const ChatUnreadCountNotifierProvider._()
|
||||
ChatUnreadCountNotifierProvider._()
|
||||
: super(
|
||||
from: null,
|
||||
argument: null,
|
||||
@@ -41,7 +41,6 @@ abstract class _$ChatUnreadCountNotifier extends $AsyncNotifier<int> {
|
||||
@$mustCallSuper
|
||||
@override
|
||||
void runBuild() {
|
||||
final created = build();
|
||||
final ref = this.ref as $Ref<AsyncValue<int>, int>;
|
||||
final element =
|
||||
ref.element
|
||||
@@ -51,16 +50,16 @@ abstract class _$ChatUnreadCountNotifier extends $AsyncNotifier<int> {
|
||||
Object?,
|
||||
Object?
|
||||
>;
|
||||
element.handleValue(ref, created);
|
||||
element.handleCreate(ref, build);
|
||||
}
|
||||
}
|
||||
|
||||
@ProviderFor(ChatSummary)
|
||||
const chatSummaryProvider = ChatSummaryProvider._();
|
||||
final chatSummaryProvider = ChatSummaryProvider._();
|
||||
|
||||
final class ChatSummaryProvider
|
||||
extends $AsyncNotifierProvider<ChatSummary, Map<String, SnChatSummary>> {
|
||||
const ChatSummaryProvider._()
|
||||
ChatSummaryProvider._()
|
||||
: super(
|
||||
from: null,
|
||||
argument: null,
|
||||
@@ -87,7 +86,6 @@ abstract class _$ChatSummary
|
||||
@$mustCallSuper
|
||||
@override
|
||||
void runBuild() {
|
||||
final created = build();
|
||||
final ref =
|
||||
this.ref
|
||||
as $Ref<
|
||||
@@ -105,6 +103,6 @@ abstract class _$ChatSummary
|
||||
Object?,
|
||||
Object?
|
||||
>;
|
||||
element.handleValue(ref, created);
|
||||
element.handleCreate(ref, build);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -10,11 +10,11 @@ part of 'messages_notifier.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(MessagesNotifier)
|
||||
const messagesProvider = MessagesNotifierFamily._();
|
||||
final messagesProvider = MessagesNotifierFamily._();
|
||||
|
||||
final class MessagesNotifierProvider
|
||||
extends $AsyncNotifierProvider<MessagesNotifier, List<LocalChatMessage>> {
|
||||
const MessagesNotifierProvider._({
|
||||
MessagesNotifierProvider._({
|
||||
required MessagesNotifierFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -61,7 +61,7 @@ final class MessagesNotifierFamily extends $Family
|
||||
FutureOr<List<LocalChatMessage>>,
|
||||
String
|
||||
> {
|
||||
const MessagesNotifierFamily._()
|
||||
MessagesNotifierFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'messagesProvider',
|
||||
@@ -86,7 +86,6 @@ abstract class _$MessagesNotifier
|
||||
@$mustCallSuper
|
||||
@override
|
||||
void runBuild() {
|
||||
final created = build(_$args);
|
||||
final ref =
|
||||
this.ref
|
||||
as $Ref<AsyncValue<List<LocalChatMessage>>, List<LocalChatMessage>>;
|
||||
@@ -101,6 +100,6 @@ abstract class _$MessagesNotifier
|
||||
Object?,
|
||||
Object?
|
||||
>;
|
||||
element.handleValue(ref, created);
|
||||
element.handleCreate(ref, () => build(_$args));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -33,11 +33,11 @@ Map<String, dynamic> _$ThemeColorsToJson(_ThemeColors instance) =>
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(AppSettingsNotifier)
|
||||
const appSettingsProvider = AppSettingsNotifierProvider._();
|
||||
final appSettingsProvider = AppSettingsNotifierProvider._();
|
||||
|
||||
final class AppSettingsNotifierProvider
|
||||
extends $NotifierProvider<AppSettingsNotifier, AppSettings> {
|
||||
const AppSettingsNotifierProvider._()
|
||||
AppSettingsNotifierProvider._()
|
||||
: super(
|
||||
from: null,
|
||||
argument: null,
|
||||
@@ -72,7 +72,6 @@ abstract class _$AppSettingsNotifier extends $Notifier<AppSettings> {
|
||||
@$mustCallSuper
|
||||
@override
|
||||
void runBuild() {
|
||||
final created = build();
|
||||
final ref = this.ref as $Ref<AppSettings, AppSettings>;
|
||||
final element =
|
||||
ref.element
|
||||
@@ -82,6 +81,6 @@ abstract class _$AppSettingsNotifier extends $Notifier<AppSettings> {
|
||||
Object?,
|
||||
Object?
|
||||
>;
|
||||
element.handleValue(ref, created);
|
||||
element.handleCreate(ref, build);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -10,7 +10,7 @@ part of 'file_list.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(billingUsage)
|
||||
const billingUsageProvider = BillingUsageProvider._();
|
||||
final billingUsageProvider = BillingUsageProvider._();
|
||||
|
||||
final class BillingUsageProvider
|
||||
extends
|
||||
@@ -22,7 +22,7 @@ final class BillingUsageProvider
|
||||
with
|
||||
$FutureModifier<Map<String, dynamic>?>,
|
||||
$FutureProvider<Map<String, dynamic>?> {
|
||||
const BillingUsageProvider._()
|
||||
BillingUsageProvider._()
|
||||
: super(
|
||||
from: null,
|
||||
argument: null,
|
||||
@@ -51,7 +51,7 @@ final class BillingUsageProvider
|
||||
String _$billingUsageHash() => r'58d8bc774868d60781574c85d6b25869a79c57aa';
|
||||
|
||||
@ProviderFor(billingQuota)
|
||||
const billingQuotaProvider = BillingQuotaProvider._();
|
||||
final billingQuotaProvider = BillingQuotaProvider._();
|
||||
|
||||
final class BillingQuotaProvider
|
||||
extends
|
||||
@@ -63,7 +63,7 @@ final class BillingQuotaProvider
|
||||
with
|
||||
$FutureModifier<Map<String, dynamic>?>,
|
||||
$FutureProvider<Map<String, dynamic>?> {
|
||||
const BillingQuotaProvider._()
|
||||
BillingQuotaProvider._()
|
||||
: super(
|
||||
from: null,
|
||||
argument: null,
|
||||
|
||||
@@ -10,7 +10,7 @@ part of 'file_references.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(fileReferences)
|
||||
const fileReferencesProvider = FileReferencesFamily._();
|
||||
final fileReferencesProvider = FileReferencesFamily._();
|
||||
|
||||
final class FileReferencesProvider
|
||||
extends
|
||||
@@ -20,7 +20,7 @@ final class FileReferencesProvider
|
||||
FutureOr<List<Reference>>
|
||||
>
|
||||
with $FutureModifier<List<Reference>>, $FutureProvider<List<Reference>> {
|
||||
const FileReferencesProvider._({
|
||||
FileReferencesProvider._({
|
||||
required FileReferencesFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -68,7 +68,7 @@ String _$fileReferencesHash() => r'd66c678c221f61978bdb242b98e6dbe31d0c204b';
|
||||
|
||||
final class FileReferencesFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<List<Reference>>, String> {
|
||||
const FileReferencesFamily._()
|
||||
FileReferencesFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'fileReferencesProvider',
|
||||
|
||||
@@ -12,7 +12,7 @@ part of 'event_calendar.dart';
|
||||
/// This can be used anywhere in the app where calendar data is needed
|
||||
|
||||
@ProviderFor(eventCalendar)
|
||||
const eventCalendarProvider = EventCalendarFamily._();
|
||||
final eventCalendarProvider = EventCalendarFamily._();
|
||||
|
||||
/// Provider for fetching event calendar data
|
||||
/// This can be used anywhere in the app where calendar data is needed
|
||||
@@ -29,7 +29,7 @@ final class EventCalendarProvider
|
||||
$FutureProvider<List<SnEventCalendarEntry>> {
|
||||
/// Provider for fetching event calendar data
|
||||
/// This can be used anywhere in the app where calendar data is needed
|
||||
const EventCalendarProvider._({
|
||||
EventCalendarProvider._({
|
||||
required EventCalendarFamily super.from,
|
||||
required EventCalendarQuery super.argument,
|
||||
}) : super(
|
||||
@@ -84,7 +84,7 @@ final class EventCalendarFamily extends $Family
|
||||
FutureOr<List<SnEventCalendarEntry>>,
|
||||
EventCalendarQuery
|
||||
> {
|
||||
const EventCalendarFamily._()
|
||||
EventCalendarFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'eventCalendarProvider',
|
||||
|
||||
@@ -10,11 +10,11 @@ part of 'link_preview.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(LinkPreview)
|
||||
const linkPreviewProvider = LinkPreviewFamily._();
|
||||
final linkPreviewProvider = LinkPreviewFamily._();
|
||||
|
||||
final class LinkPreviewProvider
|
||||
extends $AsyncNotifierProvider<LinkPreview, SnScrappedLink?> {
|
||||
const LinkPreviewProvider._({
|
||||
LinkPreviewProvider._({
|
||||
required LinkPreviewFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -61,7 +61,7 @@ final class LinkPreviewFamily extends $Family
|
||||
FutureOr<SnScrappedLink?>,
|
||||
String
|
||||
> {
|
||||
const LinkPreviewFamily._()
|
||||
LinkPreviewFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'linkPreviewProvider',
|
||||
@@ -85,7 +85,6 @@ abstract class _$LinkPreview extends $AsyncNotifier<SnScrappedLink?> {
|
||||
@$mustCallSuper
|
||||
@override
|
||||
void runBuild() {
|
||||
final created = build(_$args);
|
||||
final ref = this.ref as $Ref<AsyncValue<SnScrappedLink?>, SnScrappedLink?>;
|
||||
final element =
|
||||
ref.element
|
||||
@@ -95,6 +94,6 @@ abstract class _$LinkPreview extends $AsyncNotifier<SnScrappedLink?> {
|
||||
Object?,
|
||||
Object?
|
||||
>;
|
||||
element.handleValue(ref, created);
|
||||
element.handleCreate(ref, () => build(_$args));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -10,11 +10,11 @@ part of 'network.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(NetworkStatusNotifier)
|
||||
const networkStatusProvider = NetworkStatusNotifierProvider._();
|
||||
final networkStatusProvider = NetworkStatusNotifierProvider._();
|
||||
|
||||
final class NetworkStatusNotifierProvider
|
||||
extends $NotifierProvider<NetworkStatusNotifier, NetworkStatus> {
|
||||
const NetworkStatusNotifierProvider._()
|
||||
NetworkStatusNotifierProvider._()
|
||||
: super(
|
||||
from: null,
|
||||
argument: null,
|
||||
@@ -49,7 +49,6 @@ abstract class _$NetworkStatusNotifier extends $Notifier<NetworkStatus> {
|
||||
@$mustCallSuper
|
||||
@override
|
||||
void runBuild() {
|
||||
final created = build();
|
||||
final ref = this.ref as $Ref<NetworkStatus, NetworkStatus>;
|
||||
final element =
|
||||
ref.element
|
||||
@@ -59,6 +58,6 @@ abstract class _$NetworkStatusNotifier extends $Notifier<NetworkStatus> {
|
||||
Object?,
|
||||
Object?
|
||||
>;
|
||||
element.handleValue(ref, created);
|
||||
element.handleCreate(ref, build);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -10,7 +10,7 @@ part of 'site_files.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(siteFiles)
|
||||
const siteFilesProvider = SiteFilesFamily._();
|
||||
final siteFilesProvider = SiteFilesFamily._();
|
||||
|
||||
final class SiteFilesProvider
|
||||
extends
|
||||
@@ -22,7 +22,7 @@ final class SiteFilesProvider
|
||||
with
|
||||
$FutureModifier<List<SnSiteFileEntry>>,
|
||||
$FutureProvider<List<SnSiteFileEntry>> {
|
||||
const SiteFilesProvider._({
|
||||
SiteFilesProvider._({
|
||||
required SiteFilesFamily super.from,
|
||||
required ({String siteId, String? path}) super.argument,
|
||||
}) : super(
|
||||
@@ -74,7 +74,7 @@ final class SiteFilesFamily extends $Family
|
||||
FutureOr<List<SnSiteFileEntry>>,
|
||||
({String siteId, String? path})
|
||||
> {
|
||||
const SiteFilesFamily._()
|
||||
SiteFilesFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'siteFilesProvider',
|
||||
@@ -91,7 +91,7 @@ final class SiteFilesFamily extends $Family
|
||||
}
|
||||
|
||||
@ProviderFor(siteFileContent)
|
||||
const siteFileContentProvider = SiteFileContentFamily._();
|
||||
final siteFileContentProvider = SiteFileContentFamily._();
|
||||
|
||||
final class SiteFileContentProvider
|
||||
extends
|
||||
@@ -101,7 +101,7 @@ final class SiteFileContentProvider
|
||||
FutureOr<SnFileContent>
|
||||
>
|
||||
with $FutureModifier<SnFileContent>, $FutureProvider<SnFileContent> {
|
||||
const SiteFileContentProvider._({
|
||||
SiteFileContentProvider._({
|
||||
required SiteFileContentFamily super.from,
|
||||
required ({String siteId, String relativePath}) super.argument,
|
||||
}) : super(
|
||||
@@ -157,7 +157,7 @@ final class SiteFileContentFamily extends $Family
|
||||
FutureOr<SnFileContent>,
|
||||
({String siteId, String relativePath})
|
||||
> {
|
||||
const SiteFileContentFamily._()
|
||||
SiteFileContentFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'siteFileContentProvider',
|
||||
@@ -179,12 +179,12 @@ final class SiteFileContentFamily extends $Family
|
||||
}
|
||||
|
||||
@ProviderFor(siteFileContentRaw)
|
||||
const siteFileContentRawProvider = SiteFileContentRawFamily._();
|
||||
final siteFileContentRawProvider = SiteFileContentRawFamily._();
|
||||
|
||||
final class SiteFileContentRawProvider
|
||||
extends $FunctionalProvider<AsyncValue<String>, String, FutureOr<String>>
|
||||
with $FutureModifier<String>, $FutureProvider<String> {
|
||||
const SiteFileContentRawProvider._({
|
||||
SiteFileContentRawProvider._({
|
||||
required SiteFileContentRawFamily super.from,
|
||||
required ({String siteId, String relativePath}) super.argument,
|
||||
}) : super(
|
||||
@@ -240,7 +240,7 @@ final class SiteFileContentRawFamily extends $Family
|
||||
FutureOr<String>,
|
||||
({String siteId, String relativePath})
|
||||
> {
|
||||
const SiteFileContentRawFamily._()
|
||||
SiteFileContentRawFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'siteFileContentRawProvider',
|
||||
|
||||
@@ -10,7 +10,7 @@ part of 'site_pages.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(sitePages)
|
||||
const sitePagesProvider = SitePagesFamily._();
|
||||
final sitePagesProvider = SitePagesFamily._();
|
||||
|
||||
final class SitePagesProvider
|
||||
extends
|
||||
@@ -22,7 +22,7 @@ final class SitePagesProvider
|
||||
with
|
||||
$FutureModifier<List<SnPublicationPage>>,
|
||||
$FutureProvider<List<SnPublicationPage>> {
|
||||
const SitePagesProvider._({
|
||||
SitePagesProvider._({
|
||||
required SitePagesFamily super.from,
|
||||
required (String, String) super.argument,
|
||||
}) : super(
|
||||
@@ -74,7 +74,7 @@ final class SitePagesFamily extends $Family
|
||||
FutureOr<List<SnPublicationPage>>,
|
||||
(String, String)
|
||||
> {
|
||||
const SitePagesFamily._()
|
||||
SitePagesFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'sitePagesProvider',
|
||||
@@ -91,7 +91,7 @@ final class SitePagesFamily extends $Family
|
||||
}
|
||||
|
||||
@ProviderFor(sitePage)
|
||||
const sitePageProvider = SitePageFamily._();
|
||||
final sitePageProvider = SitePageFamily._();
|
||||
|
||||
final class SitePageProvider
|
||||
extends
|
||||
@@ -103,7 +103,7 @@ final class SitePageProvider
|
||||
with
|
||||
$FutureModifier<SnPublicationPage>,
|
||||
$FutureProvider<SnPublicationPage> {
|
||||
const SitePageProvider._({
|
||||
SitePageProvider._({
|
||||
required SitePageFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -151,7 +151,7 @@ String _$sitePageHash() => r'542f70c5b103fe34d7cf7eb0821d52f017022efc';
|
||||
|
||||
final class SitePageFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<SnPublicationPage>, String> {
|
||||
const SitePageFamily._()
|
||||
SitePageFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'sitePageProvider',
|
||||
|
||||
@@ -10,12 +10,12 @@ part of 'theme.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(theme)
|
||||
const themeProvider = ThemeProvider._();
|
||||
final themeProvider = ThemeProvider._();
|
||||
|
||||
final class ThemeProvider
|
||||
extends $FunctionalProvider<ThemeSet, ThemeSet, ThemeSet>
|
||||
with $Provider<ThemeSet> {
|
||||
const ThemeProvider._()
|
||||
ThemeProvider._()
|
||||
: super(
|
||||
from: null,
|
||||
argument: null,
|
||||
|
||||
@@ -10,12 +10,12 @@ part of 'translate.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(translateString)
|
||||
const translateStringProvider = TranslateStringFamily._();
|
||||
final translateStringProvider = TranslateStringFamily._();
|
||||
|
||||
final class TranslateStringProvider
|
||||
extends $FunctionalProvider<AsyncValue<String>, String, FutureOr<String>>
|
||||
with $FutureModifier<String>, $FutureProvider<String> {
|
||||
const TranslateStringProvider._({
|
||||
TranslateStringProvider._({
|
||||
required TranslateStringFamily super.from,
|
||||
required TranslateQuery super.argument,
|
||||
}) : super(
|
||||
@@ -62,7 +62,7 @@ String _$translateStringHash() => r'51d638cf07cbf3ffa9469298f5bd9c667bc0ccb7';
|
||||
|
||||
final class TranslateStringFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<String>, TranslateQuery> {
|
||||
const TranslateStringFamily._()
|
||||
TranslateStringFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'translateStringProvider',
|
||||
@@ -79,12 +79,12 @@ final class TranslateStringFamily extends $Family
|
||||
}
|
||||
|
||||
@ProviderFor(detectStringLanguage)
|
||||
const detectStringLanguageProvider = DetectStringLanguageFamily._();
|
||||
final detectStringLanguageProvider = DetectStringLanguageFamily._();
|
||||
|
||||
final class DetectStringLanguageProvider
|
||||
extends $FunctionalProvider<String?, String?, String?>
|
||||
with $Provider<String?> {
|
||||
const DetectStringLanguageProvider._({
|
||||
DetectStringLanguageProvider._({
|
||||
required DetectStringLanguageFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -140,7 +140,7 @@ String _$detectStringLanguageHash() =>
|
||||
|
||||
final class DetectStringLanguageFamily extends $Family
|
||||
with $FunctionalFamilyOverride<String?, String> {
|
||||
const DetectStringLanguageFamily._()
|
||||
DetectStringLanguageFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'detectStringLanguageProvider',
|
||||
|
||||
@@ -185,6 +185,22 @@ final routerProvider = Provider<GoRouter>((ref) {
|
||||
return const SizedBox.shrink();
|
||||
},
|
||||
),
|
||||
GoRoute(
|
||||
name: 'postDetail',
|
||||
path: '/posts/:id',
|
||||
builder: (context, state) {
|
||||
final id = state.pathParameters['id']!;
|
||||
return PostDetailScreen(id: id);
|
||||
},
|
||||
),
|
||||
GoRoute(
|
||||
name: 'publisherProfile',
|
||||
path: '/publishers/:name',
|
||||
builder: (context, state) {
|
||||
final name = state.pathParameters['name']!;
|
||||
return PublisherProfileScreen(name: name);
|
||||
},
|
||||
),
|
||||
|
||||
GoRoute(
|
||||
name: 'universalSearch',
|
||||
@@ -261,22 +277,6 @@ final routerProvider = Provider<GoRouter>((ref) {
|
||||
);
|
||||
},
|
||||
),
|
||||
GoRoute(
|
||||
name: 'postDetail',
|
||||
path: '/posts/:id',
|
||||
builder: (context, state) {
|
||||
final id = state.pathParameters['id']!;
|
||||
return PostDetailScreen(id: id);
|
||||
},
|
||||
),
|
||||
GoRoute(
|
||||
name: 'publisherProfile',
|
||||
path: '/publishers/:name',
|
||||
builder: (context, state) {
|
||||
final name = state.pathParameters['name']!;
|
||||
return PublisherProfileScreen(name: name);
|
||||
},
|
||||
),
|
||||
GoRoute(
|
||||
name: 'discoveryRealms',
|
||||
path: '/discovery/realms',
|
||||
|
||||
@@ -10,12 +10,12 @@ part of 'credits.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(socialCredits)
|
||||
const socialCreditsProvider = SocialCreditsProvider._();
|
||||
final socialCreditsProvider = SocialCreditsProvider._();
|
||||
|
||||
final class SocialCreditsProvider
|
||||
extends $FunctionalProvider<AsyncValue<double>, double, FutureOr<double>>
|
||||
with $FutureModifier<double>, $FutureProvider<double> {
|
||||
const SocialCreditsProvider._()
|
||||
SocialCreditsProvider._()
|
||||
: super(
|
||||
from: null,
|
||||
argument: null,
|
||||
|
||||
@@ -10,7 +10,7 @@ part of 'account_settings.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(authFactors)
|
||||
const authFactorsProvider = AuthFactorsProvider._();
|
||||
final authFactorsProvider = AuthFactorsProvider._();
|
||||
|
||||
final class AuthFactorsProvider
|
||||
extends
|
||||
@@ -22,7 +22,7 @@ final class AuthFactorsProvider
|
||||
with
|
||||
$FutureModifier<List<SnAuthFactor>>,
|
||||
$FutureProvider<List<SnAuthFactor>> {
|
||||
const AuthFactorsProvider._()
|
||||
AuthFactorsProvider._()
|
||||
: super(
|
||||
from: null,
|
||||
argument: null,
|
||||
@@ -51,7 +51,7 @@ final class AuthFactorsProvider
|
||||
String _$authFactorsHash() => r'ed87d7dbd421fef0a5620416727c3dc598c97ef5';
|
||||
|
||||
@ProviderFor(contactMethods)
|
||||
const contactMethodsProvider = ContactMethodsProvider._();
|
||||
final contactMethodsProvider = ContactMethodsProvider._();
|
||||
|
||||
final class ContactMethodsProvider
|
||||
extends
|
||||
@@ -63,7 +63,7 @@ final class ContactMethodsProvider
|
||||
with
|
||||
$FutureModifier<List<SnContactMethod>>,
|
||||
$FutureProvider<List<SnContactMethod>> {
|
||||
const ContactMethodsProvider._()
|
||||
ContactMethodsProvider._()
|
||||
: super(
|
||||
from: null,
|
||||
argument: null,
|
||||
@@ -92,7 +92,7 @@ final class ContactMethodsProvider
|
||||
String _$contactMethodsHash() => r'1d3d03e9ffbf36126236558ead22cb7d88bb9cb2';
|
||||
|
||||
@ProviderFor(accountConnections)
|
||||
const accountConnectionsProvider = AccountConnectionsProvider._();
|
||||
final accountConnectionsProvider = AccountConnectionsProvider._();
|
||||
|
||||
final class AccountConnectionsProvider
|
||||
extends
|
||||
@@ -104,7 +104,7 @@ final class AccountConnectionsProvider
|
||||
with
|
||||
$FutureModifier<List<SnAccountConnection>>,
|
||||
$FutureProvider<List<SnAccountConnection>> {
|
||||
const AccountConnectionsProvider._()
|
||||
AccountConnectionsProvider._()
|
||||
: super(
|
||||
from: null,
|
||||
argument: null,
|
||||
|
||||
@@ -10,7 +10,7 @@ part of 'profile.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(account)
|
||||
const accountProvider = AccountFamily._();
|
||||
final accountProvider = AccountFamily._();
|
||||
|
||||
final class AccountProvider
|
||||
extends
|
||||
@@ -20,7 +20,7 @@ final class AccountProvider
|
||||
FutureOr<SnAccount>
|
||||
>
|
||||
with $FutureModifier<SnAccount>, $FutureProvider<SnAccount> {
|
||||
const AccountProvider._({
|
||||
AccountProvider._({
|
||||
required AccountFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -67,7 +67,7 @@ String _$accountHash() => r'5e2b7bd59151b4638a5561f495537c259f767123';
|
||||
|
||||
final class AccountFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<SnAccount>, String> {
|
||||
const AccountFamily._()
|
||||
AccountFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'accountProvider',
|
||||
@@ -84,7 +84,7 @@ final class AccountFamily extends $Family
|
||||
}
|
||||
|
||||
@ProviderFor(accountBadges)
|
||||
const accountBadgesProvider = AccountBadgesFamily._();
|
||||
final accountBadgesProvider = AccountBadgesFamily._();
|
||||
|
||||
final class AccountBadgesProvider
|
||||
extends
|
||||
@@ -96,7 +96,7 @@ final class AccountBadgesProvider
|
||||
with
|
||||
$FutureModifier<List<SnAccountBadge>>,
|
||||
$FutureProvider<List<SnAccountBadge>> {
|
||||
const AccountBadgesProvider._({
|
||||
AccountBadgesProvider._({
|
||||
required AccountBadgesFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -144,7 +144,7 @@ String _$accountBadgesHash() => r'68db63f49827020beecbdbf20529520d0cd14a7d';
|
||||
|
||||
final class AccountBadgesFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<List<SnAccountBadge>>, String> {
|
||||
const AccountBadgesFamily._()
|
||||
AccountBadgesFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'accountBadgesProvider',
|
||||
@@ -161,13 +161,13 @@ final class AccountBadgesFamily extends $Family
|
||||
}
|
||||
|
||||
@ProviderFor(accountAppbarForcegroundColor)
|
||||
const accountAppbarForcegroundColorProvider =
|
||||
final accountAppbarForcegroundColorProvider =
|
||||
AccountAppbarForcegroundColorFamily._();
|
||||
|
||||
final class AccountAppbarForcegroundColorProvider
|
||||
extends $FunctionalProvider<AsyncValue<Color?>, Color?, FutureOr<Color?>>
|
||||
with $FutureModifier<Color?>, $FutureProvider<Color?> {
|
||||
const AccountAppbarForcegroundColorProvider._({
|
||||
AccountAppbarForcegroundColorProvider._({
|
||||
required AccountAppbarForcegroundColorFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -216,7 +216,7 @@ String _$accountAppbarForcegroundColorHash() =>
|
||||
|
||||
final class AccountAppbarForcegroundColorFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<Color?>, String> {
|
||||
const AccountAppbarForcegroundColorFamily._()
|
||||
AccountAppbarForcegroundColorFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'accountAppbarForcegroundColorProvider',
|
||||
@@ -233,7 +233,7 @@ final class AccountAppbarForcegroundColorFamily extends $Family
|
||||
}
|
||||
|
||||
@ProviderFor(accountDirectChat)
|
||||
const accountDirectChatProvider = AccountDirectChatFamily._();
|
||||
final accountDirectChatProvider = AccountDirectChatFamily._();
|
||||
|
||||
final class AccountDirectChatProvider
|
||||
extends
|
||||
@@ -243,7 +243,7 @@ final class AccountDirectChatProvider
|
||||
FutureOr<SnChatRoom?>
|
||||
>
|
||||
with $FutureModifier<SnChatRoom?>, $FutureProvider<SnChatRoom?> {
|
||||
const AccountDirectChatProvider._({
|
||||
AccountDirectChatProvider._({
|
||||
required AccountDirectChatFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -291,7 +291,7 @@ String _$accountDirectChatHash() => r'71bc9eed34a436a3743e8ef87f7aaae861fc5746';
|
||||
|
||||
final class AccountDirectChatFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<SnChatRoom?>, String> {
|
||||
const AccountDirectChatFamily._()
|
||||
AccountDirectChatFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'accountDirectChatProvider',
|
||||
@@ -308,7 +308,7 @@ final class AccountDirectChatFamily extends $Family
|
||||
}
|
||||
|
||||
@ProviderFor(accountRelationship)
|
||||
const accountRelationshipProvider = AccountRelationshipFamily._();
|
||||
final accountRelationshipProvider = AccountRelationshipFamily._();
|
||||
|
||||
final class AccountRelationshipProvider
|
||||
extends
|
||||
@@ -318,7 +318,7 @@ final class AccountRelationshipProvider
|
||||
FutureOr<SnRelationship?>
|
||||
>
|
||||
with $FutureModifier<SnRelationship?>, $FutureProvider<SnRelationship?> {
|
||||
const AccountRelationshipProvider._({
|
||||
AccountRelationshipProvider._({
|
||||
required AccountRelationshipFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -367,7 +367,7 @@ String _$accountRelationshipHash() =>
|
||||
|
||||
final class AccountRelationshipFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<SnRelationship?>, String> {
|
||||
const AccountRelationshipFamily._()
|
||||
AccountRelationshipFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'accountRelationshipProvider',
|
||||
@@ -384,7 +384,7 @@ final class AccountRelationshipFamily extends $Family
|
||||
}
|
||||
|
||||
@ProviderFor(accountBotDeveloper)
|
||||
const accountBotDeveloperProvider = AccountBotDeveloperFamily._();
|
||||
final accountBotDeveloperProvider = AccountBotDeveloperFamily._();
|
||||
|
||||
final class AccountBotDeveloperProvider
|
||||
extends
|
||||
@@ -394,7 +394,7 @@ final class AccountBotDeveloperProvider
|
||||
FutureOr<SnDeveloper?>
|
||||
>
|
||||
with $FutureModifier<SnDeveloper?>, $FutureProvider<SnDeveloper?> {
|
||||
const AccountBotDeveloperProvider._({
|
||||
AccountBotDeveloperProvider._({
|
||||
required AccountBotDeveloperFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -443,7 +443,7 @@ String _$accountBotDeveloperHash() =>
|
||||
|
||||
final class AccountBotDeveloperFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<SnDeveloper?>, String> {
|
||||
const AccountBotDeveloperFamily._()
|
||||
AccountBotDeveloperFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'accountBotDeveloperProvider',
|
||||
@@ -460,7 +460,7 @@ final class AccountBotDeveloperFamily extends $Family
|
||||
}
|
||||
|
||||
@ProviderFor(accountPublishers)
|
||||
const accountPublishersProvider = AccountPublishersFamily._();
|
||||
final accountPublishersProvider = AccountPublishersFamily._();
|
||||
|
||||
final class AccountPublishersProvider
|
||||
extends
|
||||
@@ -472,7 +472,7 @@ final class AccountPublishersProvider
|
||||
with
|
||||
$FutureModifier<List<SnPublisher>>,
|
||||
$FutureProvider<List<SnPublisher>> {
|
||||
const AccountPublishersProvider._({
|
||||
AccountPublishersProvider._({
|
||||
required AccountPublishersFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -520,7 +520,7 @@ String _$accountPublishersHash() => r'25f5695b4a5154163d77f1769876d826bf736609';
|
||||
|
||||
final class AccountPublishersFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<List<SnPublisher>>, String> {
|
||||
const AccountPublishersFamily._()
|
||||
AccountPublishersFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'accountPublishersProvider',
|
||||
|
||||
@@ -10,7 +10,7 @@ part of 'relationship.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(sentFriendRequest)
|
||||
const sentFriendRequestProvider = SentFriendRequestProvider._();
|
||||
final sentFriendRequestProvider = SentFriendRequestProvider._();
|
||||
|
||||
final class SentFriendRequestProvider
|
||||
extends
|
||||
@@ -22,7 +22,7 @@ final class SentFriendRequestProvider
|
||||
with
|
||||
$FutureModifier<List<SnRelationship>>,
|
||||
$FutureProvider<List<SnRelationship>> {
|
||||
const SentFriendRequestProvider._()
|
||||
SentFriendRequestProvider._()
|
||||
: super(
|
||||
from: null,
|
||||
argument: null,
|
||||
|
||||
@@ -10,12 +10,12 @@ part of 'captcha.config.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(captchaUrl)
|
||||
const captchaUrlProvider = CaptchaUrlProvider._();
|
||||
final captchaUrlProvider = CaptchaUrlProvider._();
|
||||
|
||||
final class CaptchaUrlProvider
|
||||
extends $FunctionalProvider<AsyncValue<String>, String, FutureOr<String>>
|
||||
with $FutureModifier<String>, $FutureProvider<String> {
|
||||
const CaptchaUrlProvider._()
|
||||
CaptchaUrlProvider._()
|
||||
: super(
|
||||
from: null,
|
||||
argument: null,
|
||||
|
||||
@@ -10,12 +10,12 @@ part of 'room_detail.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(totalMessagesCount)
|
||||
const totalMessagesCountProvider = TotalMessagesCountFamily._();
|
||||
final totalMessagesCountProvider = TotalMessagesCountFamily._();
|
||||
|
||||
final class TotalMessagesCountProvider
|
||||
extends $FunctionalProvider<AsyncValue<int>, int, FutureOr<int>>
|
||||
with $FutureModifier<int>, $FutureProvider<int> {
|
||||
const TotalMessagesCountProvider._({
|
||||
TotalMessagesCountProvider._({
|
||||
required TotalMessagesCountFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -63,7 +63,7 @@ String _$totalMessagesCountHash() =>
|
||||
|
||||
final class TotalMessagesCountFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<int>, String> {
|
||||
const TotalMessagesCountFamily._()
|
||||
TotalMessagesCountFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'totalMessagesCountProvider',
|
||||
|
||||
@@ -10,7 +10,7 @@ part of 'hub.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(publisherStats)
|
||||
const publisherStatsProvider = PublisherStatsFamily._();
|
||||
final publisherStatsProvider = PublisherStatsFamily._();
|
||||
|
||||
final class PublisherStatsProvider
|
||||
extends
|
||||
@@ -22,7 +22,7 @@ final class PublisherStatsProvider
|
||||
with
|
||||
$FutureModifier<SnPublisherStats?>,
|
||||
$FutureProvider<SnPublisherStats?> {
|
||||
const PublisherStatsProvider._({
|
||||
PublisherStatsProvider._({
|
||||
required PublisherStatsFamily super.from,
|
||||
required String? super.argument,
|
||||
}) : super(
|
||||
@@ -70,7 +70,7 @@ String _$publisherStatsHash() => r'eea4ed98bf165cc785874f83b912bb7e23d1f7bc';
|
||||
|
||||
final class PublisherStatsFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<SnPublisherStats?>, String?> {
|
||||
const PublisherStatsFamily._()
|
||||
PublisherStatsFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'publisherStatsProvider',
|
||||
@@ -87,7 +87,7 @@ final class PublisherStatsFamily extends $Family
|
||||
}
|
||||
|
||||
@ProviderFor(publisherHeatmap)
|
||||
const publisherHeatmapProvider = PublisherHeatmapFamily._();
|
||||
final publisherHeatmapProvider = PublisherHeatmapFamily._();
|
||||
|
||||
final class PublisherHeatmapProvider
|
||||
extends
|
||||
@@ -97,7 +97,7 @@ final class PublisherHeatmapProvider
|
||||
FutureOr<SnHeatmap?>
|
||||
>
|
||||
with $FutureModifier<SnHeatmap?>, $FutureProvider<SnHeatmap?> {
|
||||
const PublisherHeatmapProvider._({
|
||||
PublisherHeatmapProvider._({
|
||||
required PublisherHeatmapFamily super.from,
|
||||
required String? super.argument,
|
||||
}) : super(
|
||||
@@ -144,7 +144,7 @@ String _$publisherHeatmapHash() => r'5f70c55e14629ec8628445a317888e02fccd9af2';
|
||||
|
||||
final class PublisherHeatmapFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<SnHeatmap?>, String?> {
|
||||
const PublisherHeatmapFamily._()
|
||||
PublisherHeatmapFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'publisherHeatmapProvider',
|
||||
@@ -161,7 +161,7 @@ final class PublisherHeatmapFamily extends $Family
|
||||
}
|
||||
|
||||
@ProviderFor(publisherIdentity)
|
||||
const publisherIdentityProvider = PublisherIdentityFamily._();
|
||||
final publisherIdentityProvider = PublisherIdentityFamily._();
|
||||
|
||||
final class PublisherIdentityProvider
|
||||
extends
|
||||
@@ -173,7 +173,7 @@ final class PublisherIdentityProvider
|
||||
with
|
||||
$FutureModifier<SnPublisherMember?>,
|
||||
$FutureProvider<SnPublisherMember?> {
|
||||
const PublisherIdentityProvider._({
|
||||
PublisherIdentityProvider._({
|
||||
required PublisherIdentityFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -221,7 +221,7 @@ String _$publisherIdentityHash() => r'299372f25fa4b2bf8e11a8ba2d645100fc38e76f';
|
||||
|
||||
final class PublisherIdentityFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<SnPublisherMember?>, String> {
|
||||
const PublisherIdentityFamily._()
|
||||
PublisherIdentityFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'publisherIdentityProvider',
|
||||
@@ -238,7 +238,7 @@ final class PublisherIdentityFamily extends $Family
|
||||
}
|
||||
|
||||
@ProviderFor(publisherFeatures)
|
||||
const publisherFeaturesProvider = PublisherFeaturesFamily._();
|
||||
final publisherFeaturesProvider = PublisherFeaturesFamily._();
|
||||
|
||||
final class PublisherFeaturesProvider
|
||||
extends
|
||||
@@ -250,7 +250,7 @@ final class PublisherFeaturesProvider
|
||||
with
|
||||
$FutureModifier<Map<String, bool>>,
|
||||
$FutureProvider<Map<String, bool>> {
|
||||
const PublisherFeaturesProvider._({
|
||||
PublisherFeaturesProvider._({
|
||||
required PublisherFeaturesFamily super.from,
|
||||
required String? super.argument,
|
||||
}) : super(
|
||||
@@ -298,7 +298,7 @@ String _$publisherFeaturesHash() => r'08bace2d9a3da227ecec0cbf8709e55ee0646ca2';
|
||||
|
||||
final class PublisherFeaturesFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<Map<String, bool>>, String?> {
|
||||
const PublisherFeaturesFamily._()
|
||||
PublisherFeaturesFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'publisherFeaturesProvider',
|
||||
@@ -315,7 +315,7 @@ final class PublisherFeaturesFamily extends $Family
|
||||
}
|
||||
|
||||
@ProviderFor(publisherInvites)
|
||||
const publisherInvitesProvider = PublisherInvitesProvider._();
|
||||
final publisherInvitesProvider = PublisherInvitesProvider._();
|
||||
|
||||
final class PublisherInvitesProvider
|
||||
extends
|
||||
@@ -327,7 +327,7 @@ final class PublisherInvitesProvider
|
||||
with
|
||||
$FutureModifier<List<SnPublisherMember>>,
|
||||
$FutureProvider<List<SnPublisherMember>> {
|
||||
const PublisherInvitesProvider._()
|
||||
PublisherInvitesProvider._()
|
||||
: super(
|
||||
from: null,
|
||||
argument: null,
|
||||
@@ -356,7 +356,7 @@ final class PublisherInvitesProvider
|
||||
String _$publisherInvitesHash() => r'93aafc2f02af0a7a055ec1770b3999363dfaabdc';
|
||||
|
||||
@ProviderFor(publisherActorStatus)
|
||||
const publisherActorStatusProvider = PublisherActorStatusFamily._();
|
||||
final publisherActorStatusProvider = PublisherActorStatusFamily._();
|
||||
|
||||
final class PublisherActorStatusProvider
|
||||
extends
|
||||
@@ -368,7 +368,7 @@ final class PublisherActorStatusProvider
|
||||
with
|
||||
$FutureModifier<SnActorStatusResponse>,
|
||||
$FutureProvider<SnActorStatusResponse> {
|
||||
const PublisherActorStatusProvider._({
|
||||
PublisherActorStatusProvider._({
|
||||
required PublisherActorStatusFamily super.from,
|
||||
required String? super.argument,
|
||||
}) : super(
|
||||
@@ -417,7 +417,7 @@ String _$publisherActorStatusHash() =>
|
||||
|
||||
final class PublisherActorStatusFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<SnActorStatusResponse>, String?> {
|
||||
const PublisherActorStatusFamily._()
|
||||
PublisherActorStatusFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'publisherActorStatusProvider',
|
||||
|
||||
@@ -10,7 +10,7 @@ part of 'poll_list.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(pollWithStats)
|
||||
const pollWithStatsProvider = PollWithStatsFamily._();
|
||||
final pollWithStatsProvider = PollWithStatsFamily._();
|
||||
|
||||
final class PollWithStatsProvider
|
||||
extends
|
||||
@@ -20,7 +20,7 @@ final class PollWithStatsProvider
|
||||
FutureOr<SnPollWithStats>
|
||||
>
|
||||
with $FutureModifier<SnPollWithStats>, $FutureProvider<SnPollWithStats> {
|
||||
const PollWithStatsProvider._({
|
||||
PollWithStatsProvider._({
|
||||
required PollWithStatsFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -68,7 +68,7 @@ String _$pollWithStatsHash() => r'6bb910046ce1e09368f9922dbec52fdc2cc86740';
|
||||
|
||||
final class PollWithStatsFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<SnPollWithStats>, String> {
|
||||
const PollWithStatsFamily._()
|
||||
PollWithStatsFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'pollWithStatsProvider',
|
||||
|
||||
@@ -10,7 +10,7 @@ part of 'publishers_form.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(publishersManaged)
|
||||
const publishersManagedProvider = PublishersManagedProvider._();
|
||||
final publishersManagedProvider = PublishersManagedProvider._();
|
||||
|
||||
final class PublishersManagedProvider
|
||||
extends
|
||||
@@ -22,7 +22,7 @@ final class PublishersManagedProvider
|
||||
with
|
||||
$FutureModifier<List<SnPublisher>>,
|
||||
$FutureProvider<List<SnPublisher>> {
|
||||
const PublishersManagedProvider._()
|
||||
PublishersManagedProvider._()
|
||||
: super(
|
||||
from: null,
|
||||
argument: null,
|
||||
@@ -51,7 +51,7 @@ final class PublishersManagedProvider
|
||||
String _$publishersManagedHash() => r'ea83759fed9bd5119738b4d09f12b4476959e0a3';
|
||||
|
||||
@ProviderFor(publisherNullable)
|
||||
const publisherNullableProvider = PublisherNullableFamily._();
|
||||
final publisherNullableProvider = PublisherNullableFamily._();
|
||||
|
||||
final class PublisherNullableProvider
|
||||
extends
|
||||
@@ -61,7 +61,7 @@ final class PublisherNullableProvider
|
||||
FutureOr<SnPublisher?>
|
||||
>
|
||||
with $FutureModifier<SnPublisher?>, $FutureProvider<SnPublisher?> {
|
||||
const PublisherNullableProvider._({
|
||||
PublisherNullableProvider._({
|
||||
required PublisherNullableFamily super.from,
|
||||
required String? super.argument,
|
||||
}) : super(
|
||||
@@ -109,7 +109,7 @@ String _$publisherNullableHash() => r'49b28083a2f351c5e5cde0b1a97f6c7503969041';
|
||||
|
||||
final class PublisherNullableFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<SnPublisher?>, String?> {
|
||||
const PublisherNullableFamily._()
|
||||
PublisherNullableFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'publisherNullableProvider',
|
||||
|
||||
@@ -10,7 +10,7 @@ part of 'site_detail.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(publicationSiteDetail)
|
||||
const publicationSiteDetailProvider = PublicationSiteDetailFamily._();
|
||||
final publicationSiteDetailProvider = PublicationSiteDetailFamily._();
|
||||
|
||||
final class PublicationSiteDetailProvider
|
||||
extends
|
||||
@@ -22,7 +22,7 @@ final class PublicationSiteDetailProvider
|
||||
with
|
||||
$FutureModifier<SnPublicationSite>,
|
||||
$FutureProvider<SnPublicationSite> {
|
||||
const PublicationSiteDetailProvider._({
|
||||
PublicationSiteDetailProvider._({
|
||||
required PublicationSiteDetailFamily super.from,
|
||||
required (String, String) super.argument,
|
||||
}) : super(
|
||||
@@ -75,7 +75,7 @@ final class PublicationSiteDetailFamily extends $Family
|
||||
FutureOr<SnPublicationSite>,
|
||||
(String, String)
|
||||
> {
|
||||
const PublicationSiteDetailFamily._()
|
||||
PublicationSiteDetailFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'publicationSiteDetailProvider',
|
||||
|
||||
@@ -10,7 +10,7 @@ part of 'pack_detail.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(stickerPackContent)
|
||||
const stickerPackContentProvider = StickerPackContentFamily._();
|
||||
final stickerPackContentProvider = StickerPackContentFamily._();
|
||||
|
||||
final class StickerPackContentProvider
|
||||
extends
|
||||
@@ -20,7 +20,7 @@ final class StickerPackContentProvider
|
||||
FutureOr<List<SnSticker>>
|
||||
>
|
||||
with $FutureModifier<List<SnSticker>>, $FutureProvider<List<SnSticker>> {
|
||||
const StickerPackContentProvider._({
|
||||
StickerPackContentProvider._({
|
||||
required StickerPackContentFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -69,7 +69,7 @@ String _$stickerPackContentHash() =>
|
||||
|
||||
final class StickerPackContentFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<List<SnSticker>>, String> {
|
||||
const StickerPackContentFamily._()
|
||||
StickerPackContentFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'stickerPackContentProvider',
|
||||
@@ -86,7 +86,7 @@ final class StickerPackContentFamily extends $Family
|
||||
}
|
||||
|
||||
@ProviderFor(stickerPackSticker)
|
||||
const stickerPackStickerProvider = StickerPackStickerFamily._();
|
||||
final stickerPackStickerProvider = StickerPackStickerFamily._();
|
||||
|
||||
final class StickerPackStickerProvider
|
||||
extends
|
||||
@@ -96,7 +96,7 @@ final class StickerPackStickerProvider
|
||||
FutureOr<SnSticker?>
|
||||
>
|
||||
with $FutureModifier<SnSticker?>, $FutureProvider<SnSticker?> {
|
||||
const StickerPackStickerProvider._({
|
||||
StickerPackStickerProvider._({
|
||||
required StickerPackStickerFamily super.from,
|
||||
required StickerWithPackQuery? super.argument,
|
||||
}) : super(
|
||||
@@ -145,7 +145,7 @@ String _$stickerPackStickerHash() =>
|
||||
final class StickerPackStickerFamily extends $Family
|
||||
with
|
||||
$FunctionalFamilyOverride<FutureOr<SnSticker?>, StickerWithPackQuery?> {
|
||||
const StickerPackStickerFamily._()
|
||||
StickerPackStickerFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'stickerPackStickerProvider',
|
||||
|
||||
@@ -10,7 +10,7 @@ part of 'stickers.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(stickerPack)
|
||||
const stickerPackProvider = StickerPackFamily._();
|
||||
final stickerPackProvider = StickerPackFamily._();
|
||||
|
||||
final class StickerPackProvider
|
||||
extends
|
||||
@@ -20,7 +20,7 @@ final class StickerPackProvider
|
||||
FutureOr<SnStickerPack?>
|
||||
>
|
||||
with $FutureModifier<SnStickerPack?>, $FutureProvider<SnStickerPack?> {
|
||||
const StickerPackProvider._({
|
||||
StickerPackProvider._({
|
||||
required StickerPackFamily super.from,
|
||||
required String? super.argument,
|
||||
}) : super(
|
||||
@@ -68,7 +68,7 @@ String _$stickerPackHash() => r'71ef84471237c8191918095094bdfc87d3920e77';
|
||||
|
||||
final class StickerPackFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<SnStickerPack?>, String?> {
|
||||
const StickerPackFamily._()
|
||||
StickerPackFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'stickerPackProvider',
|
||||
|
||||
@@ -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',
|
||||
|
||||
@@ -10,7 +10,7 @@ part of 'articles.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(subscribedFeeds)
|
||||
const subscribedFeedsProvider = SubscribedFeedsProvider._();
|
||||
final subscribedFeedsProvider = SubscribedFeedsProvider._();
|
||||
|
||||
final class SubscribedFeedsProvider
|
||||
extends
|
||||
@@ -20,7 +20,7 @@ final class SubscribedFeedsProvider
|
||||
FutureOr<List<SnWebFeed>>
|
||||
>
|
||||
with $FutureModifier<List<SnWebFeed>>, $FutureProvider<List<SnWebFeed>> {
|
||||
const SubscribedFeedsProvider._()
|
||||
SubscribedFeedsProvider._()
|
||||
: super(
|
||||
from: null,
|
||||
argument: null,
|
||||
|
||||
@@ -10,7 +10,7 @@ part of 'feed_detail.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(marketplaceWebFeed)
|
||||
const marketplaceWebFeedProvider = MarketplaceWebFeedFamily._();
|
||||
final marketplaceWebFeedProvider = MarketplaceWebFeedFamily._();
|
||||
|
||||
final class MarketplaceWebFeedProvider
|
||||
extends
|
||||
@@ -20,7 +20,7 @@ final class MarketplaceWebFeedProvider
|
||||
FutureOr<SnWebFeed>
|
||||
>
|
||||
with $FutureModifier<SnWebFeed>, $FutureProvider<SnWebFeed> {
|
||||
const MarketplaceWebFeedProvider._({
|
||||
MarketplaceWebFeedProvider._({
|
||||
required MarketplaceWebFeedFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -68,7 +68,7 @@ String _$marketplaceWebFeedHash() =>
|
||||
|
||||
final class MarketplaceWebFeedFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<SnWebFeed>, String> {
|
||||
const MarketplaceWebFeedFamily._()
|
||||
MarketplaceWebFeedFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'marketplaceWebFeedProvider',
|
||||
@@ -87,7 +87,7 @@ final class MarketplaceWebFeedFamily extends $Family
|
||||
/// Provider for web feed subscription status
|
||||
|
||||
@ProviderFor(marketplaceWebFeedSubscription)
|
||||
const marketplaceWebFeedSubscriptionProvider =
|
||||
final marketplaceWebFeedSubscriptionProvider =
|
||||
MarketplaceWebFeedSubscriptionFamily._();
|
||||
|
||||
/// Provider for web feed subscription status
|
||||
@@ -96,7 +96,7 @@ final class MarketplaceWebFeedSubscriptionProvider
|
||||
extends $FunctionalProvider<AsyncValue<bool>, bool, FutureOr<bool>>
|
||||
with $FutureModifier<bool>, $FutureProvider<bool> {
|
||||
/// Provider for web feed subscription status
|
||||
const MarketplaceWebFeedSubscriptionProvider._({
|
||||
MarketplaceWebFeedSubscriptionProvider._({
|
||||
required MarketplaceWebFeedSubscriptionFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -147,7 +147,7 @@ String _$marketplaceWebFeedSubscriptionHash() =>
|
||||
|
||||
final class MarketplaceWebFeedSubscriptionFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<bool>, String> {
|
||||
const MarketplaceWebFeedSubscriptionFamily._()
|
||||
MarketplaceWebFeedSubscriptionFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'marketplaceWebFeedSubscriptionProvider',
|
||||
|
||||
@@ -10,7 +10,7 @@ part of 'lottery.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(lotteryTickets)
|
||||
const lotteryTicketsProvider = LotteryTicketsFamily._();
|
||||
final lotteryTicketsProvider = LotteryTicketsFamily._();
|
||||
|
||||
final class LotteryTicketsProvider
|
||||
extends
|
||||
@@ -22,7 +22,7 @@ final class LotteryTicketsProvider
|
||||
with
|
||||
$FutureModifier<List<SnLotteryTicket>>,
|
||||
$FutureProvider<List<SnLotteryTicket>> {
|
||||
const LotteryTicketsProvider._({
|
||||
LotteryTicketsProvider._({
|
||||
required LotteryTicketsFamily super.from,
|
||||
required ({int offset, int take}) super.argument,
|
||||
}) : super(
|
||||
@@ -74,7 +74,7 @@ final class LotteryTicketsFamily extends $Family
|
||||
FutureOr<List<SnLotteryTicket>>,
|
||||
({int offset, int take})
|
||||
> {
|
||||
const LotteryTicketsFamily._()
|
||||
LotteryTicketsFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'lotteryTicketsProvider',
|
||||
@@ -94,7 +94,7 @@ final class LotteryTicketsFamily extends $Family
|
||||
}
|
||||
|
||||
@ProviderFor(lotteryRecords)
|
||||
const lotteryRecordsProvider = LotteryRecordsFamily._();
|
||||
final lotteryRecordsProvider = LotteryRecordsFamily._();
|
||||
|
||||
final class LotteryRecordsProvider
|
||||
extends
|
||||
@@ -106,7 +106,7 @@ final class LotteryRecordsProvider
|
||||
with
|
||||
$FutureModifier<List<SnLotteryRecord>>,
|
||||
$FutureProvider<List<SnLotteryRecord>> {
|
||||
const LotteryRecordsProvider._({
|
||||
LotteryRecordsProvider._({
|
||||
required LotteryRecordsFamily super.from,
|
||||
required ({int offset, int take}) super.argument,
|
||||
}) : super(
|
||||
@@ -158,7 +158,7 @@ final class LotteryRecordsFamily extends $Family
|
||||
FutureOr<List<SnLotteryRecord>>,
|
||||
({int offset, int take})
|
||||
> {
|
||||
const LotteryRecordsFamily._()
|
||||
LotteryRecordsFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'lotteryRecordsProvider',
|
||||
|
||||
@@ -10,12 +10,12 @@ part of 'notification.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(NotificationUnreadCountNotifier)
|
||||
const notificationUnreadCountProvider =
|
||||
final notificationUnreadCountProvider =
|
||||
NotificationUnreadCountNotifierProvider._();
|
||||
|
||||
final class NotificationUnreadCountNotifierProvider
|
||||
extends $AsyncNotifierProvider<NotificationUnreadCountNotifier, int> {
|
||||
const NotificationUnreadCountNotifierProvider._()
|
||||
NotificationUnreadCountNotifierProvider._()
|
||||
: super(
|
||||
from: null,
|
||||
argument: null,
|
||||
@@ -42,7 +42,6 @@ abstract class _$NotificationUnreadCountNotifier extends $AsyncNotifier<int> {
|
||||
@$mustCallSuper
|
||||
@override
|
||||
void runBuild() {
|
||||
final created = build();
|
||||
final ref = this.ref as $Ref<AsyncValue<int>, int>;
|
||||
final element =
|
||||
ref.element
|
||||
@@ -52,6 +51,6 @@ abstract class _$NotificationUnreadCountNotifier extends $AsyncNotifier<int> {
|
||||
Object?,
|
||||
Object?
|
||||
>;
|
||||
element.handleValue(ref, created);
|
||||
element.handleCreate(ref, build);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -10,7 +10,7 @@ part of 'post_category_detail.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(postCategory)
|
||||
const postCategoryProvider = PostCategoryFamily._();
|
||||
final postCategoryProvider = PostCategoryFamily._();
|
||||
|
||||
final class PostCategoryProvider
|
||||
extends
|
||||
@@ -20,7 +20,7 @@ final class PostCategoryProvider
|
||||
FutureOr<SnPostCategory>
|
||||
>
|
||||
with $FutureModifier<SnPostCategory>, $FutureProvider<SnPostCategory> {
|
||||
const PostCategoryProvider._({
|
||||
PostCategoryProvider._({
|
||||
required PostCategoryFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -68,7 +68,7 @@ String _$postCategoryHash() => r'0df2de729ba96819ee37377314615abef0c99547';
|
||||
|
||||
final class PostCategoryFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<SnPostCategory>, String> {
|
||||
const PostCategoryFamily._()
|
||||
PostCategoryFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'postCategoryProvider',
|
||||
@@ -85,7 +85,7 @@ final class PostCategoryFamily extends $Family
|
||||
}
|
||||
|
||||
@ProviderFor(postTag)
|
||||
const postTagProvider = PostTagFamily._();
|
||||
final postTagProvider = PostTagFamily._();
|
||||
|
||||
final class PostTagProvider
|
||||
extends
|
||||
@@ -95,7 +95,7 @@ final class PostTagProvider
|
||||
FutureOr<SnPostTag>
|
||||
>
|
||||
with $FutureModifier<SnPostTag>, $FutureProvider<SnPostTag> {
|
||||
const PostTagProvider._({
|
||||
PostTagProvider._({
|
||||
required PostTagFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -142,7 +142,7 @@ String _$postTagHash() => r'e050fdf9af81a843a9abd9cf979dd2672e0a2b93';
|
||||
|
||||
final class PostTagFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<SnPostTag>, String> {
|
||||
const PostTagFamily._()
|
||||
PostTagFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'postTagProvider',
|
||||
@@ -159,7 +159,7 @@ final class PostTagFamily extends $Family
|
||||
}
|
||||
|
||||
@ProviderFor(postCategorySubscription)
|
||||
const postCategorySubscriptionProvider = PostCategorySubscriptionFamily._();
|
||||
final postCategorySubscriptionProvider = PostCategorySubscriptionFamily._();
|
||||
|
||||
final class PostCategorySubscriptionProvider
|
||||
extends
|
||||
@@ -171,7 +171,7 @@ final class PostCategorySubscriptionProvider
|
||||
with
|
||||
$FutureModifier<SnCategorySubscription?>,
|
||||
$FutureProvider<SnCategorySubscription?> {
|
||||
const PostCategorySubscriptionProvider._({
|
||||
PostCategorySubscriptionProvider._({
|
||||
required PostCategorySubscriptionFamily super.from,
|
||||
required (String, bool) super.argument,
|
||||
}) : super(
|
||||
@@ -225,7 +225,7 @@ final class PostCategorySubscriptionFamily extends $Family
|
||||
FutureOr<SnCategorySubscription?>,
|
||||
(String, bool)
|
||||
> {
|
||||
const PostCategorySubscriptionFamily._()
|
||||
PostCategorySubscriptionFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'postCategorySubscriptionProvider',
|
||||
|
||||
@@ -10,12 +10,12 @@ part of 'post_detail.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(post)
|
||||
const postProvider = PostFamily._();
|
||||
final postProvider = PostFamily._();
|
||||
|
||||
final class PostProvider
|
||||
extends $FunctionalProvider<AsyncValue<SnPost?>, SnPost?, FutureOr<SnPost?>>
|
||||
with $FutureModifier<SnPost?>, $FutureProvider<SnPost?> {
|
||||
const PostProvider._({
|
||||
PostProvider._({
|
||||
required PostFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -62,7 +62,7 @@ String _$postHash() => r'66c2eb074c6d7467fef81cab70a13356e648e661';
|
||||
|
||||
final class PostFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<SnPost?>, String> {
|
||||
const PostFamily._()
|
||||
PostFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'postProvider',
|
||||
|
||||
@@ -10,7 +10,7 @@ part of 'publisher_profile.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(publisher)
|
||||
const publisherProvider = PublisherFamily._();
|
||||
final publisherProvider = PublisherFamily._();
|
||||
|
||||
final class PublisherProvider
|
||||
extends
|
||||
@@ -20,7 +20,7 @@ final class PublisherProvider
|
||||
FutureOr<SnPublisher>
|
||||
>
|
||||
with $FutureModifier<SnPublisher>, $FutureProvider<SnPublisher> {
|
||||
const PublisherProvider._({
|
||||
PublisherProvider._({
|
||||
required PublisherFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -68,7 +68,7 @@ String _$publisherHash() => r'a1da21f0275421382e2882fd52c4e061c4675cf7';
|
||||
|
||||
final class PublisherFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<SnPublisher>, String> {
|
||||
const PublisherFamily._()
|
||||
PublisherFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'publisherProvider',
|
||||
@@ -85,7 +85,7 @@ final class PublisherFamily extends $Family
|
||||
}
|
||||
|
||||
@ProviderFor(publisherBadges)
|
||||
const publisherBadgesProvider = PublisherBadgesFamily._();
|
||||
final publisherBadgesProvider = PublisherBadgesFamily._();
|
||||
|
||||
final class PublisherBadgesProvider
|
||||
extends
|
||||
@@ -97,7 +97,7 @@ final class PublisherBadgesProvider
|
||||
with
|
||||
$FutureModifier<List<SnAccountBadge>>,
|
||||
$FutureProvider<List<SnAccountBadge>> {
|
||||
const PublisherBadgesProvider._({
|
||||
PublisherBadgesProvider._({
|
||||
required PublisherBadgesFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -145,7 +145,7 @@ String _$publisherBadgesHash() => r'26776fd6cb611953f52bdb6a7dfa004c34d5cd8e';
|
||||
|
||||
final class PublisherBadgesFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<List<SnAccountBadge>>, String> {
|
||||
const PublisherBadgesFamily._()
|
||||
PublisherBadgesFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'publisherBadgesProvider',
|
||||
@@ -162,7 +162,7 @@ final class PublisherBadgesFamily extends $Family
|
||||
}
|
||||
|
||||
@ProviderFor(publisherSubscriptionStatus)
|
||||
const publisherSubscriptionStatusProvider =
|
||||
final publisherSubscriptionStatusProvider =
|
||||
PublisherSubscriptionStatusFamily._();
|
||||
|
||||
final class PublisherSubscriptionStatusProvider
|
||||
@@ -175,7 +175,7 @@ final class PublisherSubscriptionStatusProvider
|
||||
with
|
||||
$FutureModifier<SnPublisherSubscription?>,
|
||||
$FutureProvider<SnPublisherSubscription?> {
|
||||
const PublisherSubscriptionStatusProvider._({
|
||||
PublisherSubscriptionStatusProvider._({
|
||||
required PublisherSubscriptionStatusFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -225,7 +225,7 @@ String _$publisherSubscriptionStatusHash() =>
|
||||
|
||||
final class PublisherSubscriptionStatusFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<SnPublisherSubscription?>, String> {
|
||||
const PublisherSubscriptionStatusFamily._()
|
||||
PublisherSubscriptionStatusFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'publisherSubscriptionStatusProvider',
|
||||
@@ -242,13 +242,13 @@ final class PublisherSubscriptionStatusFamily extends $Family
|
||||
}
|
||||
|
||||
@ProviderFor(publisherAppbarForcegroundColor)
|
||||
const publisherAppbarForcegroundColorProvider =
|
||||
final publisherAppbarForcegroundColorProvider =
|
||||
PublisherAppbarForcegroundColorFamily._();
|
||||
|
||||
final class PublisherAppbarForcegroundColorProvider
|
||||
extends $FunctionalProvider<AsyncValue<Color?>, Color?, FutureOr<Color?>>
|
||||
with $FutureModifier<Color?>, $FutureProvider<Color?> {
|
||||
const PublisherAppbarForcegroundColorProvider._({
|
||||
PublisherAppbarForcegroundColorProvider._({
|
||||
required PublisherAppbarForcegroundColorFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -297,7 +297,7 @@ String _$publisherAppbarForcegroundColorHash() =>
|
||||
|
||||
final class PublisherAppbarForcegroundColorFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<Color?>, String> {
|
||||
const PublisherAppbarForcegroundColorFamily._()
|
||||
PublisherAppbarForcegroundColorFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'publisherAppbarForcegroundColorProvider',
|
||||
@@ -314,7 +314,7 @@ final class PublisherAppbarForcegroundColorFamily extends $Family
|
||||
}
|
||||
|
||||
@ProviderFor(publisherHeatmap)
|
||||
const publisherHeatmapProvider = PublisherHeatmapFamily._();
|
||||
final publisherHeatmapProvider = PublisherHeatmapFamily._();
|
||||
|
||||
final class PublisherHeatmapProvider
|
||||
extends
|
||||
@@ -324,7 +324,7 @@ final class PublisherHeatmapProvider
|
||||
FutureOr<SnHeatmap?>
|
||||
>
|
||||
with $FutureModifier<SnHeatmap?>, $FutureProvider<SnHeatmap?> {
|
||||
const PublisherHeatmapProvider._({
|
||||
PublisherHeatmapProvider._({
|
||||
required PublisherHeatmapFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -371,7 +371,7 @@ String _$publisherHeatmapHash() => r'86db275ce3861a2855b5ec35fbfef85fc47b23a6';
|
||||
|
||||
final class PublisherHeatmapFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<SnHeatmap?>, String> {
|
||||
const PublisherHeatmapFamily._()
|
||||
PublisherHeatmapFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'publisherHeatmapProvider',
|
||||
|
||||
@@ -10,7 +10,7 @@ part of 'realms.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(realmsJoined)
|
||||
const realmsJoinedProvider = RealmsJoinedProvider._();
|
||||
final realmsJoinedProvider = RealmsJoinedProvider._();
|
||||
|
||||
final class RealmsJoinedProvider
|
||||
extends
|
||||
@@ -20,7 +20,7 @@ final class RealmsJoinedProvider
|
||||
FutureOr<List<SnRealm>>
|
||||
>
|
||||
with $FutureModifier<List<SnRealm>>, $FutureProvider<List<SnRealm>> {
|
||||
const RealmsJoinedProvider._()
|
||||
RealmsJoinedProvider._()
|
||||
: super(
|
||||
from: null,
|
||||
argument: null,
|
||||
@@ -49,13 +49,13 @@ final class RealmsJoinedProvider
|
||||
String _$realmsJoinedHash() => r'b15029acd38f03bbbb8708adb78f25ac357a0421';
|
||||
|
||||
@ProviderFor(realm)
|
||||
const realmProvider = RealmFamily._();
|
||||
final realmProvider = RealmFamily._();
|
||||
|
||||
final class RealmProvider
|
||||
extends
|
||||
$FunctionalProvider<AsyncValue<SnRealm?>, SnRealm?, FutureOr<SnRealm?>>
|
||||
with $FutureModifier<SnRealm?>, $FutureProvider<SnRealm?> {
|
||||
const RealmProvider._({
|
||||
RealmProvider._({
|
||||
required RealmFamily super.from,
|
||||
required String? super.argument,
|
||||
}) : super(
|
||||
@@ -102,7 +102,7 @@ String _$realmHash() => r'71a126ab2810566646e1629290c1ce9ffa0839e3';
|
||||
|
||||
final class RealmFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<SnRealm?>, String?> {
|
||||
const RealmFamily._()
|
||||
RealmFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'realmProvider',
|
||||
@@ -119,7 +119,7 @@ final class RealmFamily extends $Family
|
||||
}
|
||||
|
||||
@ProviderFor(realmInvites)
|
||||
const realmInvitesProvider = RealmInvitesProvider._();
|
||||
final realmInvitesProvider = RealmInvitesProvider._();
|
||||
|
||||
final class RealmInvitesProvider
|
||||
extends
|
||||
@@ -131,7 +131,7 @@ final class RealmInvitesProvider
|
||||
with
|
||||
$FutureModifier<List<SnRealmMember>>,
|
||||
$FutureProvider<List<SnRealmMember>> {
|
||||
const RealmInvitesProvider._()
|
||||
RealmInvitesProvider._()
|
||||
: super(
|
||||
from: null,
|
||||
argument: null,
|
||||
|
||||
@@ -13,7 +13,7 @@ part of 'pack_detail.dart';
|
||||
/// API interactions are intentionally left blank per request.
|
||||
|
||||
@ProviderFor(marketplaceStickerPackContent)
|
||||
const marketplaceStickerPackContentProvider =
|
||||
final marketplaceStickerPackContentProvider =
|
||||
MarketplaceStickerPackContentFamily._();
|
||||
|
||||
/// Marketplace version of sticker pack detail page (no publisher dependency).
|
||||
@@ -31,7 +31,7 @@ final class MarketplaceStickerPackContentProvider
|
||||
/// Marketplace version of sticker pack detail page (no publisher dependency).
|
||||
/// Shows all stickers in the pack and provides a button to add the sticker.
|
||||
/// API interactions are intentionally left blank per request.
|
||||
const MarketplaceStickerPackContentProvider._({
|
||||
MarketplaceStickerPackContentProvider._({
|
||||
required MarketplaceStickerPackContentFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -85,7 +85,7 @@ String _$marketplaceStickerPackContentHash() =>
|
||||
|
||||
final class MarketplaceStickerPackContentFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<List<SnSticker>>, String> {
|
||||
const MarketplaceStickerPackContentFamily._()
|
||||
MarketplaceStickerPackContentFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'marketplaceStickerPackContentProvider',
|
||||
@@ -106,13 +106,13 @@ final class MarketplaceStickerPackContentFamily extends $Family
|
||||
}
|
||||
|
||||
@ProviderFor(marketplaceStickerPackOwnership)
|
||||
const marketplaceStickerPackOwnershipProvider =
|
||||
final marketplaceStickerPackOwnershipProvider =
|
||||
MarketplaceStickerPackOwnershipFamily._();
|
||||
|
||||
final class MarketplaceStickerPackOwnershipProvider
|
||||
extends $FunctionalProvider<AsyncValue<bool>, bool, FutureOr<bool>>
|
||||
with $FutureModifier<bool>, $FutureProvider<bool> {
|
||||
const MarketplaceStickerPackOwnershipProvider._({
|
||||
MarketplaceStickerPackOwnershipProvider._({
|
||||
required MarketplaceStickerPackOwnershipFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -161,7 +161,7 @@ String _$marketplaceStickerPackOwnershipHash() =>
|
||||
|
||||
final class MarketplaceStickerPackOwnershipFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<bool>, String> {
|
||||
const MarketplaceStickerPackOwnershipFamily._()
|
||||
MarketplaceStickerPackOwnershipFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'marketplaceStickerPackOwnershipProvider',
|
||||
|
||||
@@ -10,12 +10,12 @@ part of 'think.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(thoughtAvailableStaus)
|
||||
const thoughtAvailableStausProvider = ThoughtAvailableStausProvider._();
|
||||
final thoughtAvailableStausProvider = ThoughtAvailableStausProvider._();
|
||||
|
||||
final class ThoughtAvailableStausProvider
|
||||
extends $FunctionalProvider<AsyncValue<bool>, bool, FutureOr<bool>>
|
||||
with $FutureModifier<bool>, $FutureProvider<bool> {
|
||||
const ThoughtAvailableStausProvider._()
|
||||
ThoughtAvailableStausProvider._()
|
||||
: super(
|
||||
from: null,
|
||||
argument: null,
|
||||
@@ -44,7 +44,7 @@ String _$thoughtAvailableStausHash() =>
|
||||
r'720e04e56bff8c4d4ca6854ce997da4e7926c84c';
|
||||
|
||||
@ProviderFor(thoughtSequence)
|
||||
const thoughtSequenceProvider = ThoughtSequenceFamily._();
|
||||
final thoughtSequenceProvider = ThoughtSequenceFamily._();
|
||||
|
||||
final class ThoughtSequenceProvider
|
||||
extends
|
||||
@@ -56,7 +56,7 @@ final class ThoughtSequenceProvider
|
||||
with
|
||||
$FutureModifier<List<SnThinkingThought>>,
|
||||
$FutureProvider<List<SnThinkingThought>> {
|
||||
const ThoughtSequenceProvider._({
|
||||
ThoughtSequenceProvider._({
|
||||
required ThoughtSequenceFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -104,7 +104,7 @@ String _$thoughtSequenceHash() => r'2a93c0a04f9a720ba474c02a36502940fb7f3ed7';
|
||||
|
||||
final class ThoughtSequenceFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<List<SnThinkingThought>>, String> {
|
||||
const ThoughtSequenceFamily._()
|
||||
ThoughtSequenceFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'thoughtSequenceProvider',
|
||||
@@ -121,7 +121,7 @@ final class ThoughtSequenceFamily extends $Family
|
||||
}
|
||||
|
||||
@ProviderFor(thoughtServices)
|
||||
const thoughtServicesProvider = ThoughtServicesProvider._();
|
||||
final thoughtServicesProvider = ThoughtServicesProvider._();
|
||||
|
||||
final class ThoughtServicesProvider
|
||||
extends
|
||||
@@ -133,7 +133,7 @@ final class ThoughtServicesProvider
|
||||
with
|
||||
$FutureModifier<ThoughtServicesResponse>,
|
||||
$FutureProvider<ThoughtServicesResponse> {
|
||||
const ThoughtServicesProvider._()
|
||||
ThoughtServicesProvider._()
|
||||
: super(
|
||||
from: null,
|
||||
argument: null,
|
||||
|
||||
@@ -10,7 +10,7 @@ part of 'wallet.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(walletCurrent)
|
||||
const walletCurrentProvider = WalletCurrentProvider._();
|
||||
final walletCurrentProvider = WalletCurrentProvider._();
|
||||
|
||||
final class WalletCurrentProvider
|
||||
extends
|
||||
@@ -20,7 +20,7 @@ final class WalletCurrentProvider
|
||||
FutureOr<SnWallet?>
|
||||
>
|
||||
with $FutureModifier<SnWallet?>, $FutureProvider<SnWallet?> {
|
||||
const WalletCurrentProvider._()
|
||||
WalletCurrentProvider._()
|
||||
: super(
|
||||
from: null,
|
||||
argument: null,
|
||||
@@ -48,7 +48,7 @@ final class WalletCurrentProvider
|
||||
String _$walletCurrentHash() => r'bdc7cb27ce2286b561a03522085cc4efc884faad';
|
||||
|
||||
@ProviderFor(walletStats)
|
||||
const walletStatsProvider = WalletStatsProvider._();
|
||||
final walletStatsProvider = WalletStatsProvider._();
|
||||
|
||||
final class WalletStatsProvider
|
||||
extends
|
||||
@@ -58,7 +58,7 @@ final class WalletStatsProvider
|
||||
FutureOr<SnWalletStats>
|
||||
>
|
||||
with $FutureModifier<SnWalletStats>, $FutureProvider<SnWalletStats> {
|
||||
const WalletStatsProvider._()
|
||||
WalletStatsProvider._()
|
||||
: super(
|
||||
from: null,
|
||||
argument: null,
|
||||
@@ -87,7 +87,7 @@ final class WalletStatsProvider
|
||||
String _$walletStatsHash() => r'2243011937b377a66cdf44cae144021cee69e82f';
|
||||
|
||||
@ProviderFor(walletFund)
|
||||
const walletFundProvider = WalletFundFamily._();
|
||||
final walletFundProvider = WalletFundFamily._();
|
||||
|
||||
final class WalletFundProvider
|
||||
extends
|
||||
@@ -97,7 +97,7 @@ final class WalletFundProvider
|
||||
FutureOr<SnWalletFund>
|
||||
>
|
||||
with $FutureModifier<SnWalletFund>, $FutureProvider<SnWalletFund> {
|
||||
const WalletFundProvider._({
|
||||
WalletFundProvider._({
|
||||
required WalletFundFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -145,7 +145,7 @@ String _$walletFundHash() => r'459efdee5e2775eedaa4312e0d317c218fa7e1fa';
|
||||
|
||||
final class WalletFundFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<SnWalletFund>, String> {
|
||||
const WalletFundFamily._()
|
||||
WalletFundFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'walletFundProvider',
|
||||
|
||||
@@ -10,11 +10,11 @@ part of 'compose_storage_db.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(ComposeStorageNotifier)
|
||||
const composeStorageProvider = ComposeStorageNotifierProvider._();
|
||||
final composeStorageProvider = ComposeStorageNotifierProvider._();
|
||||
|
||||
final class ComposeStorageNotifierProvider
|
||||
extends $NotifierProvider<ComposeStorageNotifier, Map<String, SnPost>> {
|
||||
const ComposeStorageNotifierProvider._()
|
||||
ComposeStorageNotifierProvider._()
|
||||
: super(
|
||||
from: null,
|
||||
argument: null,
|
||||
@@ -49,7 +49,6 @@ abstract class _$ComposeStorageNotifier extends $Notifier<Map<String, SnPost>> {
|
||||
@$mustCallSuper
|
||||
@override
|
||||
void runBuild() {
|
||||
final created = build();
|
||||
final ref = this.ref as $Ref<Map<String, SnPost>, Map<String, SnPost>>;
|
||||
final element =
|
||||
ref.element
|
||||
@@ -59,6 +58,6 @@ abstract class _$ComposeStorageNotifier extends $Notifier<Map<String, SnPost>> {
|
||||
Object?,
|
||||
Object?
|
||||
>;
|
||||
element.handleValue(ref, created);
|
||||
element.handleCreate(ref, build);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -10,11 +10,11 @@ part of 'tour.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(TourStatusNotifier)
|
||||
const tourStatusProvider = TourStatusNotifierProvider._();
|
||||
final tourStatusProvider = TourStatusNotifierProvider._();
|
||||
|
||||
final class TourStatusNotifierProvider
|
||||
extends $NotifierProvider<TourStatusNotifier, Map<String, bool>> {
|
||||
const TourStatusNotifierProvider._()
|
||||
TourStatusNotifierProvider._()
|
||||
: super(
|
||||
from: null,
|
||||
argument: null,
|
||||
@@ -49,7 +49,6 @@ abstract class _$TourStatusNotifier extends $Notifier<Map<String, bool>> {
|
||||
@$mustCallSuper
|
||||
@override
|
||||
void runBuild() {
|
||||
final created = build();
|
||||
final ref = this.ref as $Ref<Map<String, bool>, Map<String, bool>>;
|
||||
final element =
|
||||
ref.element
|
||||
@@ -59,6 +58,6 @@ abstract class _$TourStatusNotifier extends $Notifier<Map<String, bool>> {
|
||||
Object?,
|
||||
Object?
|
||||
>;
|
||||
element.handleValue(ref, created);
|
||||
element.handleCreate(ref, build);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -10,7 +10,7 @@ part of 'account_devices.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(authDevices)
|
||||
const authDevicesProvider = AuthDevicesProvider._();
|
||||
final authDevicesProvider = AuthDevicesProvider._();
|
||||
|
||||
final class AuthDevicesProvider
|
||||
extends
|
||||
@@ -22,7 +22,7 @@ final class AuthDevicesProvider
|
||||
with
|
||||
$FutureModifier<List<SnAuthDeviceWithSession>>,
|
||||
$FutureProvider<List<SnAuthDeviceWithSession>> {
|
||||
const AuthDevicesProvider._()
|
||||
AuthDevicesProvider._()
|
||||
: super(
|
||||
from: null,
|
||||
argument: null,
|
||||
|
||||
@@ -10,7 +10,7 @@ part of 'account_picker.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(searchAccounts)
|
||||
const searchAccountsProvider = SearchAccountsFamily._();
|
||||
final searchAccountsProvider = SearchAccountsFamily._();
|
||||
|
||||
final class SearchAccountsProvider
|
||||
extends
|
||||
@@ -20,7 +20,7 @@ final class SearchAccountsProvider
|
||||
FutureOr<List<SnAccount>>
|
||||
>
|
||||
with $FutureModifier<List<SnAccount>>, $FutureProvider<List<SnAccount>> {
|
||||
const SearchAccountsProvider._({
|
||||
SearchAccountsProvider._({
|
||||
required SearchAccountsFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -68,7 +68,7 @@ String _$searchAccountsHash() => r'3b4aa4d7970a1e406c1a0a1dfac2c686e05bc533';
|
||||
|
||||
final class SearchAccountsFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<List<SnAccount>>, String> {
|
||||
const SearchAccountsFamily._()
|
||||
SearchAccountsFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'searchAccountsProvider',
|
||||
|
||||
@@ -10,7 +10,7 @@ part of 'activity_presence.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(discordAssets)
|
||||
const discordAssetsProvider = DiscordAssetsFamily._();
|
||||
final discordAssetsProvider = DiscordAssetsFamily._();
|
||||
|
||||
final class DiscordAssetsProvider
|
||||
extends
|
||||
@@ -22,7 +22,7 @@ final class DiscordAssetsProvider
|
||||
with
|
||||
$FutureModifier<Map<String, String>?>,
|
||||
$FutureProvider<Map<String, String>?> {
|
||||
const DiscordAssetsProvider._({
|
||||
DiscordAssetsProvider._({
|
||||
required DiscordAssetsFamily super.from,
|
||||
required SnPresenceActivity super.argument,
|
||||
}) : super(
|
||||
@@ -74,7 +74,7 @@ final class DiscordAssetsFamily extends $Family
|
||||
FutureOr<Map<String, String>?>,
|
||||
SnPresenceActivity
|
||||
> {
|
||||
const DiscordAssetsFamily._()
|
||||
DiscordAssetsFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'discordAssetsProvider',
|
||||
@@ -91,12 +91,12 @@ final class DiscordAssetsFamily extends $Family
|
||||
}
|
||||
|
||||
@ProviderFor(discordAssetsUrl)
|
||||
const discordAssetsUrlProvider = DiscordAssetsUrlFamily._();
|
||||
final discordAssetsUrlProvider = DiscordAssetsUrlFamily._();
|
||||
|
||||
final class DiscordAssetsUrlProvider
|
||||
extends $FunctionalProvider<AsyncValue<String?>, String?, FutureOr<String?>>
|
||||
with $FutureModifier<String?>, $FutureProvider<String?> {
|
||||
const DiscordAssetsUrlProvider._({
|
||||
DiscordAssetsUrlProvider._({
|
||||
required DiscordAssetsUrlFamily super.from,
|
||||
required (SnPresenceActivity, String) super.argument,
|
||||
}) : super(
|
||||
@@ -147,7 +147,7 @@ final class DiscordAssetsUrlFamily extends $Family
|
||||
FutureOr<String?>,
|
||||
(SnPresenceActivity, String)
|
||||
> {
|
||||
const DiscordAssetsUrlFamily._()
|
||||
DiscordAssetsUrlFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'discordAssetsUrlProvider',
|
||||
|
||||
@@ -10,7 +10,7 @@ part of 'friends_overview.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(friendsOverview)
|
||||
const friendsOverviewProvider = FriendsOverviewProvider._();
|
||||
final friendsOverviewProvider = FriendsOverviewProvider._();
|
||||
|
||||
final class FriendsOverviewProvider
|
||||
extends
|
||||
@@ -22,7 +22,7 @@ final class FriendsOverviewProvider
|
||||
with
|
||||
$FutureModifier<List<SnFriendOverviewItem>>,
|
||||
$FutureProvider<List<SnFriendOverviewItem>> {
|
||||
const FriendsOverviewProvider._()
|
||||
FriendsOverviewProvider._()
|
||||
: super(
|
||||
from: null,
|
||||
argument: null,
|
||||
|
||||
@@ -10,7 +10,7 @@ part of 'status.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(accountStatus)
|
||||
const accountStatusProvider = AccountStatusFamily._();
|
||||
final accountStatusProvider = AccountStatusFamily._();
|
||||
|
||||
final class AccountStatusProvider
|
||||
extends
|
||||
@@ -20,7 +20,7 @@ final class AccountStatusProvider
|
||||
FutureOr<SnAccountStatus?>
|
||||
>
|
||||
with $FutureModifier<SnAccountStatus?>, $FutureProvider<SnAccountStatus?> {
|
||||
const AccountStatusProvider._({
|
||||
AccountStatusProvider._({
|
||||
required AccountStatusFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -68,7 +68,7 @@ String _$accountStatusHash() => r'4cac809808e6f1345dab06dc32d759cfcea13315';
|
||||
|
||||
final class AccountStatusFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<SnAccountStatus?>, String> {
|
||||
const AccountStatusFamily._()
|
||||
AccountStatusFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'accountStatusProvider',
|
||||
|
||||
@@ -10,7 +10,7 @@ part of 'stellar_program_tab.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(accountStellarSubscription)
|
||||
const accountStellarSubscriptionProvider =
|
||||
final accountStellarSubscriptionProvider =
|
||||
AccountStellarSubscriptionProvider._();
|
||||
|
||||
final class AccountStellarSubscriptionProvider
|
||||
@@ -23,7 +23,7 @@ final class AccountStellarSubscriptionProvider
|
||||
with
|
||||
$FutureModifier<SnWalletSubscription?>,
|
||||
$FutureProvider<SnWalletSubscription?> {
|
||||
const AccountStellarSubscriptionProvider._()
|
||||
AccountStellarSubscriptionProvider._()
|
||||
: super(
|
||||
from: null,
|
||||
argument: null,
|
||||
@@ -53,7 +53,7 @@ String _$accountStellarSubscriptionHash() =>
|
||||
r'7cdfc7ca29aac240fc8704f4493498d87f307400';
|
||||
|
||||
@ProviderFor(accountSentGifts)
|
||||
const accountSentGiftsProvider = AccountSentGiftsFamily._();
|
||||
final accountSentGiftsProvider = AccountSentGiftsFamily._();
|
||||
|
||||
final class AccountSentGiftsProvider
|
||||
extends
|
||||
@@ -65,7 +65,7 @@ final class AccountSentGiftsProvider
|
||||
with
|
||||
$FutureModifier<List<SnWalletGift>>,
|
||||
$FutureProvider<List<SnWalletGift>> {
|
||||
const AccountSentGiftsProvider._({
|
||||
AccountSentGiftsProvider._({
|
||||
required AccountSentGiftsFamily super.from,
|
||||
required ({int offset, int take}) super.argument,
|
||||
}) : super(
|
||||
@@ -117,7 +117,7 @@ final class AccountSentGiftsFamily extends $Family
|
||||
FutureOr<List<SnWalletGift>>,
|
||||
({int offset, int take})
|
||||
> {
|
||||
const AccountSentGiftsFamily._()
|
||||
AccountSentGiftsFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'accountSentGiftsProvider',
|
||||
@@ -137,7 +137,7 @@ final class AccountSentGiftsFamily extends $Family
|
||||
}
|
||||
|
||||
@ProviderFor(accountReceivedGifts)
|
||||
const accountReceivedGiftsProvider = AccountReceivedGiftsFamily._();
|
||||
final accountReceivedGiftsProvider = AccountReceivedGiftsFamily._();
|
||||
|
||||
final class AccountReceivedGiftsProvider
|
||||
extends
|
||||
@@ -149,7 +149,7 @@ final class AccountReceivedGiftsProvider
|
||||
with
|
||||
$FutureModifier<List<SnWalletGift>>,
|
||||
$FutureProvider<List<SnWalletGift>> {
|
||||
const AccountReceivedGiftsProvider._({
|
||||
AccountReceivedGiftsProvider._({
|
||||
required AccountReceivedGiftsFamily super.from,
|
||||
required ({int offset, int take}) super.argument,
|
||||
}) : super(
|
||||
@@ -206,7 +206,7 @@ final class AccountReceivedGiftsFamily extends $Family
|
||||
FutureOr<List<SnWalletGift>>,
|
||||
({int offset, int take})
|
||||
> {
|
||||
const AccountReceivedGiftsFamily._()
|
||||
AccountReceivedGiftsFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'accountReceivedGiftsProvider',
|
||||
@@ -226,7 +226,7 @@ final class AccountReceivedGiftsFamily extends $Family
|
||||
}
|
||||
|
||||
@ProviderFor(accountGift)
|
||||
const accountGiftProvider = AccountGiftFamily._();
|
||||
final accountGiftProvider = AccountGiftFamily._();
|
||||
|
||||
final class AccountGiftProvider
|
||||
extends
|
||||
@@ -236,7 +236,7 @@ final class AccountGiftProvider
|
||||
FutureOr<SnWalletGift>
|
||||
>
|
||||
with $FutureModifier<SnWalletGift>, $FutureProvider<SnWalletGift> {
|
||||
const AccountGiftProvider._({
|
||||
AccountGiftProvider._({
|
||||
required AccountGiftFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -284,7 +284,7 @@ String _$accountGiftHash() => r'70ca553e0b84cba9dfbee428f9bf44207138713a';
|
||||
|
||||
final class AccountGiftFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<SnWalletGift>, String> {
|
||||
const AccountGiftFamily._()
|
||||
AccountGiftFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'accountGiftProvider',
|
||||
|
||||
@@ -10,7 +10,7 @@ part of 'call_button.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(ongoingCall)
|
||||
const ongoingCallProvider = OngoingCallFamily._();
|
||||
final ongoingCallProvider = OngoingCallFamily._();
|
||||
|
||||
final class OngoingCallProvider
|
||||
extends
|
||||
@@ -20,7 +20,7 @@ final class OngoingCallProvider
|
||||
FutureOr<SnRealtimeCall?>
|
||||
>
|
||||
with $FutureModifier<SnRealtimeCall?>, $FutureProvider<SnRealtimeCall?> {
|
||||
const OngoingCallProvider._({
|
||||
OngoingCallProvider._({
|
||||
required OngoingCallFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -68,7 +68,7 @@ String _$ongoingCallHash() => r'3d1efaaca2981ebf698e9241453dbf2b2f13bfe3';
|
||||
|
||||
final class OngoingCallFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<SnRealtimeCall?>, String> {
|
||||
const OngoingCallFamily._()
|
||||
OngoingCallFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'ongoingCallProvider',
|
||||
|
||||
@@ -10,7 +10,7 @@ part of 'check_in.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(checkInResultToday)
|
||||
const checkInResultTodayProvider = CheckInResultTodayProvider._();
|
||||
final checkInResultTodayProvider = CheckInResultTodayProvider._();
|
||||
|
||||
final class CheckInResultTodayProvider
|
||||
extends
|
||||
@@ -20,7 +20,7 @@ final class CheckInResultTodayProvider
|
||||
FutureOr<SnCheckInResult?>
|
||||
>
|
||||
with $FutureModifier<SnCheckInResult?>, $FutureProvider<SnCheckInResult?> {
|
||||
const CheckInResultTodayProvider._()
|
||||
CheckInResultTodayProvider._()
|
||||
: super(
|
||||
from: null,
|
||||
argument: null,
|
||||
@@ -50,7 +50,7 @@ String _$checkInResultTodayHash() =>
|
||||
r'b4dc97b2243f542b36c295dc5cce3fe6097cb308';
|
||||
|
||||
@ProviderFor(nextNotableDay)
|
||||
const nextNotableDayProvider = NextNotableDayProvider._();
|
||||
final nextNotableDayProvider = NextNotableDayProvider._();
|
||||
|
||||
final class NextNotableDayProvider
|
||||
extends
|
||||
@@ -60,7 +60,7 @@ final class NextNotableDayProvider
|
||||
FutureOr<SnNotableDay?>
|
||||
>
|
||||
with $FutureModifier<SnNotableDay?>, $FutureProvider<SnNotableDay?> {
|
||||
const NextNotableDayProvider._()
|
||||
NextNotableDayProvider._()
|
||||
: super(
|
||||
from: null,
|
||||
argument: null,
|
||||
@@ -89,7 +89,7 @@ final class NextNotableDayProvider
|
||||
String _$nextNotableDayHash() => r'60d0546a086bdcb89c433c38133eb4197e4fb0a6';
|
||||
|
||||
@ProviderFor(recentNotableDay)
|
||||
const recentNotableDayProvider = RecentNotableDayProvider._();
|
||||
final recentNotableDayProvider = RecentNotableDayProvider._();
|
||||
|
||||
final class RecentNotableDayProvider
|
||||
extends
|
||||
@@ -99,7 +99,7 @@ final class RecentNotableDayProvider
|
||||
FutureOr<SnNotableDay?>
|
||||
>
|
||||
with $FutureModifier<SnNotableDay?>, $FutureProvider<SnNotableDay?> {
|
||||
const RecentNotableDayProvider._()
|
||||
RecentNotableDayProvider._()
|
||||
: super(
|
||||
from: null,
|
||||
argument: null,
|
||||
@@ -128,7 +128,7 @@ final class RecentNotableDayProvider
|
||||
String _$recentNotableDayHash() => r'e0cc4a0e8016afe1c469a7c744dbab41e0d54c2d';
|
||||
|
||||
@ProviderFor(randomFortuneSaying)
|
||||
const randomFortuneSayingProvider = RandomFortuneSayingProvider._();
|
||||
final randomFortuneSayingProvider = RandomFortuneSayingProvider._();
|
||||
|
||||
final class RandomFortuneSayingProvider
|
||||
extends
|
||||
@@ -138,7 +138,7 @@ final class RandomFortuneSayingProvider
|
||||
FutureOr<SnFortuneSaying>
|
||||
>
|
||||
with $FutureModifier<SnFortuneSaying>, $FutureProvider<SnFortuneSaying> {
|
||||
const RandomFortuneSayingProvider._()
|
||||
RandomFortuneSayingProvider._()
|
||||
: super(
|
||||
from: null,
|
||||
argument: null,
|
||||
|
||||
@@ -10,7 +10,7 @@ part of 'post_featured.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(featuredPosts)
|
||||
const featuredPostsProvider = FeaturedPostsProvider._();
|
||||
final featuredPostsProvider = FeaturedPostsProvider._();
|
||||
|
||||
final class FeaturedPostsProvider
|
||||
extends
|
||||
@@ -20,7 +20,7 @@ final class FeaturedPostsProvider
|
||||
FutureOr<List<SnPost>>
|
||||
>
|
||||
with $FutureModifier<List<SnPost>>, $FutureProvider<List<SnPost>> {
|
||||
const FeaturedPostsProvider._()
|
||||
FeaturedPostsProvider._()
|
||||
: super(
|
||||
from: null,
|
||||
argument: null,
|
||||
|
||||
@@ -10,11 +10,11 @@ part of 'post_shared.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(RepliesNotifier)
|
||||
const repliesProvider = RepliesNotifierFamily._();
|
||||
final repliesProvider = RepliesNotifierFamily._();
|
||||
|
||||
final class RepliesNotifierProvider
|
||||
extends $NotifierProvider<RepliesNotifier, RepliesState> {
|
||||
const RepliesNotifierProvider._({
|
||||
RepliesNotifierProvider._({
|
||||
required RepliesNotifierFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -69,7 +69,7 @@ final class RepliesNotifierFamily extends $Family
|
||||
RepliesState,
|
||||
String
|
||||
> {
|
||||
const RepliesNotifierFamily._()
|
||||
RepliesNotifierFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'repliesProvider',
|
||||
@@ -93,7 +93,6 @@ abstract class _$RepliesNotifier extends $Notifier<RepliesState> {
|
||||
@$mustCallSuper
|
||||
@override
|
||||
void runBuild() {
|
||||
final created = build(_$args);
|
||||
final ref = this.ref as $Ref<RepliesState, RepliesState>;
|
||||
final element =
|
||||
ref.element
|
||||
@@ -103,17 +102,17 @@ abstract class _$RepliesNotifier extends $Notifier<RepliesState> {
|
||||
Object?,
|
||||
Object?
|
||||
>;
|
||||
element.handleValue(ref, created);
|
||||
element.handleCreate(ref, () => build(_$args));
|
||||
}
|
||||
}
|
||||
|
||||
@ProviderFor(postFeaturedReply)
|
||||
const postFeaturedReplyProvider = PostFeaturedReplyFamily._();
|
||||
final postFeaturedReplyProvider = PostFeaturedReplyFamily._();
|
||||
|
||||
final class PostFeaturedReplyProvider
|
||||
extends $FunctionalProvider<AsyncValue<SnPost?>, SnPost?, FutureOr<SnPost?>>
|
||||
with $FutureModifier<SnPost?>, $FutureProvider<SnPost?> {
|
||||
const PostFeaturedReplyProvider._({
|
||||
PostFeaturedReplyProvider._({
|
||||
required PostFeaturedReplyFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -160,7 +159,7 @@ String _$postFeaturedReplyHash() => r'3f0ac0d51ad21f8754a63dd94109eb8ac4812293';
|
||||
|
||||
final class PostFeaturedReplyFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<SnPost?>, String> {
|
||||
const PostFeaturedReplyFamily._()
|
||||
PostFeaturedReplyFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'postFeaturedReplyProvider',
|
||||
|
||||
@@ -10,7 +10,7 @@ part of 'post_subscription_filter.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(publishersSubscriptions)
|
||||
const publishersSubscriptionsProvider = PublishersSubscriptionsProvider._();
|
||||
final publishersSubscriptionsProvider = PublishersSubscriptionsProvider._();
|
||||
|
||||
final class PublishersSubscriptionsProvider
|
||||
extends
|
||||
@@ -22,7 +22,7 @@ final class PublishersSubscriptionsProvider
|
||||
with
|
||||
$FutureModifier<List<SnPublisherSubscription>>,
|
||||
$FutureProvider<List<SnPublisherSubscription>> {
|
||||
const PublishersSubscriptionsProvider._()
|
||||
PublishersSubscriptionsProvider._()
|
||||
: super(
|
||||
from: null,
|
||||
argument: null,
|
||||
@@ -52,7 +52,7 @@ String _$publishersSubscriptionsHash() =>
|
||||
r'208463c1f879a3ddab4092112e312a0cd27ebc2f';
|
||||
|
||||
@ProviderFor(categoriesSubscriptions)
|
||||
const categoriesSubscriptionsProvider = CategoriesSubscriptionsProvider._();
|
||||
final categoriesSubscriptionsProvider = CategoriesSubscriptionsProvider._();
|
||||
|
||||
final class CategoriesSubscriptionsProvider
|
||||
extends
|
||||
@@ -64,7 +64,7 @@ final class CategoriesSubscriptionsProvider
|
||||
with
|
||||
$FutureModifier<List<SnCategorySubscription>>,
|
||||
$FutureProvider<List<SnCategorySubscription>> {
|
||||
const CategoriesSubscriptionsProvider._()
|
||||
CategoriesSubscriptionsProvider._()
|
||||
: super(
|
||||
from: null,
|
||||
argument: null,
|
||||
|
||||
@@ -12,7 +12,7 @@ part of 'sticker_picker.dart';
|
||||
/// GET /sphere/stickers/me
|
||||
|
||||
@ProviderFor(myStickerPacks)
|
||||
const myStickerPacksProvider = MyStickerPacksProvider._();
|
||||
final myStickerPacksProvider = MyStickerPacksProvider._();
|
||||
|
||||
/// Fetch user-added sticker packs (with stickers) from API:
|
||||
/// GET /sphere/stickers/me
|
||||
@@ -29,7 +29,7 @@ final class MyStickerPacksProvider
|
||||
$FutureProvider<List<SnStickerPack>> {
|
||||
/// Fetch user-added sticker packs (with stickers) from API:
|
||||
/// GET /sphere/stickers/me
|
||||
const MyStickerPacksProvider._()
|
||||
MyStickerPacksProvider._()
|
||||
: super(
|
||||
from: null,
|
||||
argument: null,
|
||||
|
||||
@@ -10,7 +10,7 @@ part of 'fund_envelope.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(walletFund)
|
||||
const walletFundProvider = WalletFundFamily._();
|
||||
final walletFundProvider = WalletFundFamily._();
|
||||
|
||||
final class WalletFundProvider
|
||||
extends
|
||||
@@ -20,7 +20,7 @@ final class WalletFundProvider
|
||||
FutureOr<SnWalletFund>
|
||||
>
|
||||
with $FutureModifier<SnWalletFund>, $FutureProvider<SnWalletFund> {
|
||||
const WalletFundProvider._({
|
||||
WalletFundProvider._({
|
||||
required WalletFundFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -68,7 +68,7 @@ String _$walletFundHash() => r'521fa280708e71266f8164268ba11f135f4ba810';
|
||||
|
||||
final class WalletFundFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<SnWalletFund>, String> {
|
||||
const WalletFundFamily._()
|
||||
WalletFundFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'walletFundProvider',
|
||||
|
||||
Reference in New Issue
Block a user