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