🐛 Fix route bug
This commit is contained in:
@@ -10,12 +10,12 @@ part of 'credits.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(socialCredits)
|
||||
const socialCreditsProvider = SocialCreditsProvider._();
|
||||
final socialCreditsProvider = SocialCreditsProvider._();
|
||||
|
||||
final class SocialCreditsProvider
|
||||
extends $FunctionalProvider<AsyncValue<double>, double, FutureOr<double>>
|
||||
with $FutureModifier<double>, $FutureProvider<double> {
|
||||
const SocialCreditsProvider._()
|
||||
SocialCreditsProvider._()
|
||||
: super(
|
||||
from: null,
|
||||
argument: null,
|
||||
|
||||
@@ -10,7 +10,7 @@ part of 'account_settings.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(authFactors)
|
||||
const authFactorsProvider = AuthFactorsProvider._();
|
||||
final authFactorsProvider = AuthFactorsProvider._();
|
||||
|
||||
final class AuthFactorsProvider
|
||||
extends
|
||||
@@ -22,7 +22,7 @@ final class AuthFactorsProvider
|
||||
with
|
||||
$FutureModifier<List<SnAuthFactor>>,
|
||||
$FutureProvider<List<SnAuthFactor>> {
|
||||
const AuthFactorsProvider._()
|
||||
AuthFactorsProvider._()
|
||||
: super(
|
||||
from: null,
|
||||
argument: null,
|
||||
@@ -51,7 +51,7 @@ final class AuthFactorsProvider
|
||||
String _$authFactorsHash() => r'ed87d7dbd421fef0a5620416727c3dc598c97ef5';
|
||||
|
||||
@ProviderFor(contactMethods)
|
||||
const contactMethodsProvider = ContactMethodsProvider._();
|
||||
final contactMethodsProvider = ContactMethodsProvider._();
|
||||
|
||||
final class ContactMethodsProvider
|
||||
extends
|
||||
@@ -63,7 +63,7 @@ final class ContactMethodsProvider
|
||||
with
|
||||
$FutureModifier<List<SnContactMethod>>,
|
||||
$FutureProvider<List<SnContactMethod>> {
|
||||
const ContactMethodsProvider._()
|
||||
ContactMethodsProvider._()
|
||||
: super(
|
||||
from: null,
|
||||
argument: null,
|
||||
@@ -92,7 +92,7 @@ final class ContactMethodsProvider
|
||||
String _$contactMethodsHash() => r'1d3d03e9ffbf36126236558ead22cb7d88bb9cb2';
|
||||
|
||||
@ProviderFor(accountConnections)
|
||||
const accountConnectionsProvider = AccountConnectionsProvider._();
|
||||
final accountConnectionsProvider = AccountConnectionsProvider._();
|
||||
|
||||
final class AccountConnectionsProvider
|
||||
extends
|
||||
@@ -104,7 +104,7 @@ final class AccountConnectionsProvider
|
||||
with
|
||||
$FutureModifier<List<SnAccountConnection>>,
|
||||
$FutureProvider<List<SnAccountConnection>> {
|
||||
const AccountConnectionsProvider._()
|
||||
AccountConnectionsProvider._()
|
||||
: super(
|
||||
from: null,
|
||||
argument: null,
|
||||
|
||||
@@ -10,7 +10,7 @@ part of 'profile.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(account)
|
||||
const accountProvider = AccountFamily._();
|
||||
final accountProvider = AccountFamily._();
|
||||
|
||||
final class AccountProvider
|
||||
extends
|
||||
@@ -20,7 +20,7 @@ final class AccountProvider
|
||||
FutureOr<SnAccount>
|
||||
>
|
||||
with $FutureModifier<SnAccount>, $FutureProvider<SnAccount> {
|
||||
const AccountProvider._({
|
||||
AccountProvider._({
|
||||
required AccountFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -67,7 +67,7 @@ String _$accountHash() => r'5e2b7bd59151b4638a5561f495537c259f767123';
|
||||
|
||||
final class AccountFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<SnAccount>, String> {
|
||||
const AccountFamily._()
|
||||
AccountFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'accountProvider',
|
||||
@@ -84,7 +84,7 @@ final class AccountFamily extends $Family
|
||||
}
|
||||
|
||||
@ProviderFor(accountBadges)
|
||||
const accountBadgesProvider = AccountBadgesFamily._();
|
||||
final accountBadgesProvider = AccountBadgesFamily._();
|
||||
|
||||
final class AccountBadgesProvider
|
||||
extends
|
||||
@@ -96,7 +96,7 @@ final class AccountBadgesProvider
|
||||
with
|
||||
$FutureModifier<List<SnAccountBadge>>,
|
||||
$FutureProvider<List<SnAccountBadge>> {
|
||||
const AccountBadgesProvider._({
|
||||
AccountBadgesProvider._({
|
||||
required AccountBadgesFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -144,7 +144,7 @@ String _$accountBadgesHash() => r'68db63f49827020beecbdbf20529520d0cd14a7d';
|
||||
|
||||
final class AccountBadgesFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<List<SnAccountBadge>>, String> {
|
||||
const AccountBadgesFamily._()
|
||||
AccountBadgesFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'accountBadgesProvider',
|
||||
@@ -161,13 +161,13 @@ final class AccountBadgesFamily extends $Family
|
||||
}
|
||||
|
||||
@ProviderFor(accountAppbarForcegroundColor)
|
||||
const accountAppbarForcegroundColorProvider =
|
||||
final accountAppbarForcegroundColorProvider =
|
||||
AccountAppbarForcegroundColorFamily._();
|
||||
|
||||
final class AccountAppbarForcegroundColorProvider
|
||||
extends $FunctionalProvider<AsyncValue<Color?>, Color?, FutureOr<Color?>>
|
||||
with $FutureModifier<Color?>, $FutureProvider<Color?> {
|
||||
const AccountAppbarForcegroundColorProvider._({
|
||||
AccountAppbarForcegroundColorProvider._({
|
||||
required AccountAppbarForcegroundColorFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -216,7 +216,7 @@ String _$accountAppbarForcegroundColorHash() =>
|
||||
|
||||
final class AccountAppbarForcegroundColorFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<Color?>, String> {
|
||||
const AccountAppbarForcegroundColorFamily._()
|
||||
AccountAppbarForcegroundColorFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'accountAppbarForcegroundColorProvider',
|
||||
@@ -233,7 +233,7 @@ final class AccountAppbarForcegroundColorFamily extends $Family
|
||||
}
|
||||
|
||||
@ProviderFor(accountDirectChat)
|
||||
const accountDirectChatProvider = AccountDirectChatFamily._();
|
||||
final accountDirectChatProvider = AccountDirectChatFamily._();
|
||||
|
||||
final class AccountDirectChatProvider
|
||||
extends
|
||||
@@ -243,7 +243,7 @@ final class AccountDirectChatProvider
|
||||
FutureOr<SnChatRoom?>
|
||||
>
|
||||
with $FutureModifier<SnChatRoom?>, $FutureProvider<SnChatRoom?> {
|
||||
const AccountDirectChatProvider._({
|
||||
AccountDirectChatProvider._({
|
||||
required AccountDirectChatFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -291,7 +291,7 @@ String _$accountDirectChatHash() => r'71bc9eed34a436a3743e8ef87f7aaae861fc5746';
|
||||
|
||||
final class AccountDirectChatFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<SnChatRoom?>, String> {
|
||||
const AccountDirectChatFamily._()
|
||||
AccountDirectChatFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'accountDirectChatProvider',
|
||||
@@ -308,7 +308,7 @@ final class AccountDirectChatFamily extends $Family
|
||||
}
|
||||
|
||||
@ProviderFor(accountRelationship)
|
||||
const accountRelationshipProvider = AccountRelationshipFamily._();
|
||||
final accountRelationshipProvider = AccountRelationshipFamily._();
|
||||
|
||||
final class AccountRelationshipProvider
|
||||
extends
|
||||
@@ -318,7 +318,7 @@ final class AccountRelationshipProvider
|
||||
FutureOr<SnRelationship?>
|
||||
>
|
||||
with $FutureModifier<SnRelationship?>, $FutureProvider<SnRelationship?> {
|
||||
const AccountRelationshipProvider._({
|
||||
AccountRelationshipProvider._({
|
||||
required AccountRelationshipFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -367,7 +367,7 @@ String _$accountRelationshipHash() =>
|
||||
|
||||
final class AccountRelationshipFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<SnRelationship?>, String> {
|
||||
const AccountRelationshipFamily._()
|
||||
AccountRelationshipFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'accountRelationshipProvider',
|
||||
@@ -384,7 +384,7 @@ final class AccountRelationshipFamily extends $Family
|
||||
}
|
||||
|
||||
@ProviderFor(accountBotDeveloper)
|
||||
const accountBotDeveloperProvider = AccountBotDeveloperFamily._();
|
||||
final accountBotDeveloperProvider = AccountBotDeveloperFamily._();
|
||||
|
||||
final class AccountBotDeveloperProvider
|
||||
extends
|
||||
@@ -394,7 +394,7 @@ final class AccountBotDeveloperProvider
|
||||
FutureOr<SnDeveloper?>
|
||||
>
|
||||
with $FutureModifier<SnDeveloper?>, $FutureProvider<SnDeveloper?> {
|
||||
const AccountBotDeveloperProvider._({
|
||||
AccountBotDeveloperProvider._({
|
||||
required AccountBotDeveloperFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -443,7 +443,7 @@ String _$accountBotDeveloperHash() =>
|
||||
|
||||
final class AccountBotDeveloperFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<SnDeveloper?>, String> {
|
||||
const AccountBotDeveloperFamily._()
|
||||
AccountBotDeveloperFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'accountBotDeveloperProvider',
|
||||
@@ -460,7 +460,7 @@ final class AccountBotDeveloperFamily extends $Family
|
||||
}
|
||||
|
||||
@ProviderFor(accountPublishers)
|
||||
const accountPublishersProvider = AccountPublishersFamily._();
|
||||
final accountPublishersProvider = AccountPublishersFamily._();
|
||||
|
||||
final class AccountPublishersProvider
|
||||
extends
|
||||
@@ -472,7 +472,7 @@ final class AccountPublishersProvider
|
||||
with
|
||||
$FutureModifier<List<SnPublisher>>,
|
||||
$FutureProvider<List<SnPublisher>> {
|
||||
const AccountPublishersProvider._({
|
||||
AccountPublishersProvider._({
|
||||
required AccountPublishersFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -520,7 +520,7 @@ String _$accountPublishersHash() => r'25f5695b4a5154163d77f1769876d826bf736609';
|
||||
|
||||
final class AccountPublishersFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<List<SnPublisher>>, String> {
|
||||
const AccountPublishersFamily._()
|
||||
AccountPublishersFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'accountPublishersProvider',
|
||||
|
||||
@@ -10,7 +10,7 @@ part of 'relationship.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(sentFriendRequest)
|
||||
const sentFriendRequestProvider = SentFriendRequestProvider._();
|
||||
final sentFriendRequestProvider = SentFriendRequestProvider._();
|
||||
|
||||
final class SentFriendRequestProvider
|
||||
extends
|
||||
@@ -22,7 +22,7 @@ final class SentFriendRequestProvider
|
||||
with
|
||||
$FutureModifier<List<SnRelationship>>,
|
||||
$FutureProvider<List<SnRelationship>> {
|
||||
const SentFriendRequestProvider._()
|
||||
SentFriendRequestProvider._()
|
||||
: super(
|
||||
from: null,
|
||||
argument: null,
|
||||
|
||||
@@ -10,12 +10,12 @@ part of 'captcha.config.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(captchaUrl)
|
||||
const captchaUrlProvider = CaptchaUrlProvider._();
|
||||
final captchaUrlProvider = CaptchaUrlProvider._();
|
||||
|
||||
final class CaptchaUrlProvider
|
||||
extends $FunctionalProvider<AsyncValue<String>, String, FutureOr<String>>
|
||||
with $FutureModifier<String>, $FutureProvider<String> {
|
||||
const CaptchaUrlProvider._()
|
||||
CaptchaUrlProvider._()
|
||||
: super(
|
||||
from: null,
|
||||
argument: null,
|
||||
|
||||
@@ -10,12 +10,12 @@ part of 'room_detail.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(totalMessagesCount)
|
||||
const totalMessagesCountProvider = TotalMessagesCountFamily._();
|
||||
final totalMessagesCountProvider = TotalMessagesCountFamily._();
|
||||
|
||||
final class TotalMessagesCountProvider
|
||||
extends $FunctionalProvider<AsyncValue<int>, int, FutureOr<int>>
|
||||
with $FutureModifier<int>, $FutureProvider<int> {
|
||||
const TotalMessagesCountProvider._({
|
||||
TotalMessagesCountProvider._({
|
||||
required TotalMessagesCountFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -63,7 +63,7 @@ String _$totalMessagesCountHash() =>
|
||||
|
||||
final class TotalMessagesCountFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<int>, String> {
|
||||
const TotalMessagesCountFamily._()
|
||||
TotalMessagesCountFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'totalMessagesCountProvider',
|
||||
|
||||
@@ -10,7 +10,7 @@ part of 'hub.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(publisherStats)
|
||||
const publisherStatsProvider = PublisherStatsFamily._();
|
||||
final publisherStatsProvider = PublisherStatsFamily._();
|
||||
|
||||
final class PublisherStatsProvider
|
||||
extends
|
||||
@@ -22,7 +22,7 @@ final class PublisherStatsProvider
|
||||
with
|
||||
$FutureModifier<SnPublisherStats?>,
|
||||
$FutureProvider<SnPublisherStats?> {
|
||||
const PublisherStatsProvider._({
|
||||
PublisherStatsProvider._({
|
||||
required PublisherStatsFamily super.from,
|
||||
required String? super.argument,
|
||||
}) : super(
|
||||
@@ -70,7 +70,7 @@ String _$publisherStatsHash() => r'eea4ed98bf165cc785874f83b912bb7e23d1f7bc';
|
||||
|
||||
final class PublisherStatsFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<SnPublisherStats?>, String?> {
|
||||
const PublisherStatsFamily._()
|
||||
PublisherStatsFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'publisherStatsProvider',
|
||||
@@ -87,7 +87,7 @@ final class PublisherStatsFamily extends $Family
|
||||
}
|
||||
|
||||
@ProviderFor(publisherHeatmap)
|
||||
const publisherHeatmapProvider = PublisherHeatmapFamily._();
|
||||
final publisherHeatmapProvider = PublisherHeatmapFamily._();
|
||||
|
||||
final class PublisherHeatmapProvider
|
||||
extends
|
||||
@@ -97,7 +97,7 @@ final class PublisherHeatmapProvider
|
||||
FutureOr<SnHeatmap?>
|
||||
>
|
||||
with $FutureModifier<SnHeatmap?>, $FutureProvider<SnHeatmap?> {
|
||||
const PublisherHeatmapProvider._({
|
||||
PublisherHeatmapProvider._({
|
||||
required PublisherHeatmapFamily super.from,
|
||||
required String? super.argument,
|
||||
}) : super(
|
||||
@@ -144,7 +144,7 @@ String _$publisherHeatmapHash() => r'5f70c55e14629ec8628445a317888e02fccd9af2';
|
||||
|
||||
final class PublisherHeatmapFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<SnHeatmap?>, String?> {
|
||||
const PublisherHeatmapFamily._()
|
||||
PublisherHeatmapFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'publisherHeatmapProvider',
|
||||
@@ -161,7 +161,7 @@ final class PublisherHeatmapFamily extends $Family
|
||||
}
|
||||
|
||||
@ProviderFor(publisherIdentity)
|
||||
const publisherIdentityProvider = PublisherIdentityFamily._();
|
||||
final publisherIdentityProvider = PublisherIdentityFamily._();
|
||||
|
||||
final class PublisherIdentityProvider
|
||||
extends
|
||||
@@ -173,7 +173,7 @@ final class PublisherIdentityProvider
|
||||
with
|
||||
$FutureModifier<SnPublisherMember?>,
|
||||
$FutureProvider<SnPublisherMember?> {
|
||||
const PublisherIdentityProvider._({
|
||||
PublisherIdentityProvider._({
|
||||
required PublisherIdentityFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -221,7 +221,7 @@ String _$publisherIdentityHash() => r'299372f25fa4b2bf8e11a8ba2d645100fc38e76f';
|
||||
|
||||
final class PublisherIdentityFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<SnPublisherMember?>, String> {
|
||||
const PublisherIdentityFamily._()
|
||||
PublisherIdentityFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'publisherIdentityProvider',
|
||||
@@ -238,7 +238,7 @@ final class PublisherIdentityFamily extends $Family
|
||||
}
|
||||
|
||||
@ProviderFor(publisherFeatures)
|
||||
const publisherFeaturesProvider = PublisherFeaturesFamily._();
|
||||
final publisherFeaturesProvider = PublisherFeaturesFamily._();
|
||||
|
||||
final class PublisherFeaturesProvider
|
||||
extends
|
||||
@@ -250,7 +250,7 @@ final class PublisherFeaturesProvider
|
||||
with
|
||||
$FutureModifier<Map<String, bool>>,
|
||||
$FutureProvider<Map<String, bool>> {
|
||||
const PublisherFeaturesProvider._({
|
||||
PublisherFeaturesProvider._({
|
||||
required PublisherFeaturesFamily super.from,
|
||||
required String? super.argument,
|
||||
}) : super(
|
||||
@@ -298,7 +298,7 @@ String _$publisherFeaturesHash() => r'08bace2d9a3da227ecec0cbf8709e55ee0646ca2';
|
||||
|
||||
final class PublisherFeaturesFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<Map<String, bool>>, String?> {
|
||||
const PublisherFeaturesFamily._()
|
||||
PublisherFeaturesFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'publisherFeaturesProvider',
|
||||
@@ -315,7 +315,7 @@ final class PublisherFeaturesFamily extends $Family
|
||||
}
|
||||
|
||||
@ProviderFor(publisherInvites)
|
||||
const publisherInvitesProvider = PublisherInvitesProvider._();
|
||||
final publisherInvitesProvider = PublisherInvitesProvider._();
|
||||
|
||||
final class PublisherInvitesProvider
|
||||
extends
|
||||
@@ -327,7 +327,7 @@ final class PublisherInvitesProvider
|
||||
with
|
||||
$FutureModifier<List<SnPublisherMember>>,
|
||||
$FutureProvider<List<SnPublisherMember>> {
|
||||
const PublisherInvitesProvider._()
|
||||
PublisherInvitesProvider._()
|
||||
: super(
|
||||
from: null,
|
||||
argument: null,
|
||||
@@ -356,7 +356,7 @@ final class PublisherInvitesProvider
|
||||
String _$publisherInvitesHash() => r'93aafc2f02af0a7a055ec1770b3999363dfaabdc';
|
||||
|
||||
@ProviderFor(publisherActorStatus)
|
||||
const publisherActorStatusProvider = PublisherActorStatusFamily._();
|
||||
final publisherActorStatusProvider = PublisherActorStatusFamily._();
|
||||
|
||||
final class PublisherActorStatusProvider
|
||||
extends
|
||||
@@ -368,7 +368,7 @@ final class PublisherActorStatusProvider
|
||||
with
|
||||
$FutureModifier<SnActorStatusResponse>,
|
||||
$FutureProvider<SnActorStatusResponse> {
|
||||
const PublisherActorStatusProvider._({
|
||||
PublisherActorStatusProvider._({
|
||||
required PublisherActorStatusFamily super.from,
|
||||
required String? super.argument,
|
||||
}) : super(
|
||||
@@ -417,7 +417,7 @@ String _$publisherActorStatusHash() =>
|
||||
|
||||
final class PublisherActorStatusFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<SnActorStatusResponse>, String?> {
|
||||
const PublisherActorStatusFamily._()
|
||||
PublisherActorStatusFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'publisherActorStatusProvider',
|
||||
|
||||
@@ -10,7 +10,7 @@ part of 'poll_list.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(pollWithStats)
|
||||
const pollWithStatsProvider = PollWithStatsFamily._();
|
||||
final pollWithStatsProvider = PollWithStatsFamily._();
|
||||
|
||||
final class PollWithStatsProvider
|
||||
extends
|
||||
@@ -20,7 +20,7 @@ final class PollWithStatsProvider
|
||||
FutureOr<SnPollWithStats>
|
||||
>
|
||||
with $FutureModifier<SnPollWithStats>, $FutureProvider<SnPollWithStats> {
|
||||
const PollWithStatsProvider._({
|
||||
PollWithStatsProvider._({
|
||||
required PollWithStatsFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -68,7 +68,7 @@ String _$pollWithStatsHash() => r'6bb910046ce1e09368f9922dbec52fdc2cc86740';
|
||||
|
||||
final class PollWithStatsFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<SnPollWithStats>, String> {
|
||||
const PollWithStatsFamily._()
|
||||
PollWithStatsFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'pollWithStatsProvider',
|
||||
|
||||
@@ -10,7 +10,7 @@ part of 'publishers_form.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(publishersManaged)
|
||||
const publishersManagedProvider = PublishersManagedProvider._();
|
||||
final publishersManagedProvider = PublishersManagedProvider._();
|
||||
|
||||
final class PublishersManagedProvider
|
||||
extends
|
||||
@@ -22,7 +22,7 @@ final class PublishersManagedProvider
|
||||
with
|
||||
$FutureModifier<List<SnPublisher>>,
|
||||
$FutureProvider<List<SnPublisher>> {
|
||||
const PublishersManagedProvider._()
|
||||
PublishersManagedProvider._()
|
||||
: super(
|
||||
from: null,
|
||||
argument: null,
|
||||
@@ -51,7 +51,7 @@ final class PublishersManagedProvider
|
||||
String _$publishersManagedHash() => r'ea83759fed9bd5119738b4d09f12b4476959e0a3';
|
||||
|
||||
@ProviderFor(publisherNullable)
|
||||
const publisherNullableProvider = PublisherNullableFamily._();
|
||||
final publisherNullableProvider = PublisherNullableFamily._();
|
||||
|
||||
final class PublisherNullableProvider
|
||||
extends
|
||||
@@ -61,7 +61,7 @@ final class PublisherNullableProvider
|
||||
FutureOr<SnPublisher?>
|
||||
>
|
||||
with $FutureModifier<SnPublisher?>, $FutureProvider<SnPublisher?> {
|
||||
const PublisherNullableProvider._({
|
||||
PublisherNullableProvider._({
|
||||
required PublisherNullableFamily super.from,
|
||||
required String? super.argument,
|
||||
}) : super(
|
||||
@@ -109,7 +109,7 @@ String _$publisherNullableHash() => r'49b28083a2f351c5e5cde0b1a97f6c7503969041';
|
||||
|
||||
final class PublisherNullableFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<SnPublisher?>, String?> {
|
||||
const PublisherNullableFamily._()
|
||||
PublisherNullableFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'publisherNullableProvider',
|
||||
|
||||
@@ -10,7 +10,7 @@ part of 'site_detail.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(publicationSiteDetail)
|
||||
const publicationSiteDetailProvider = PublicationSiteDetailFamily._();
|
||||
final publicationSiteDetailProvider = PublicationSiteDetailFamily._();
|
||||
|
||||
final class PublicationSiteDetailProvider
|
||||
extends
|
||||
@@ -22,7 +22,7 @@ final class PublicationSiteDetailProvider
|
||||
with
|
||||
$FutureModifier<SnPublicationSite>,
|
||||
$FutureProvider<SnPublicationSite> {
|
||||
const PublicationSiteDetailProvider._({
|
||||
PublicationSiteDetailProvider._({
|
||||
required PublicationSiteDetailFamily super.from,
|
||||
required (String, String) super.argument,
|
||||
}) : super(
|
||||
@@ -75,7 +75,7 @@ final class PublicationSiteDetailFamily extends $Family
|
||||
FutureOr<SnPublicationSite>,
|
||||
(String, String)
|
||||
> {
|
||||
const PublicationSiteDetailFamily._()
|
||||
PublicationSiteDetailFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'publicationSiteDetailProvider',
|
||||
|
||||
@@ -10,7 +10,7 @@ part of 'pack_detail.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(stickerPackContent)
|
||||
const stickerPackContentProvider = StickerPackContentFamily._();
|
||||
final stickerPackContentProvider = StickerPackContentFamily._();
|
||||
|
||||
final class StickerPackContentProvider
|
||||
extends
|
||||
@@ -20,7 +20,7 @@ final class StickerPackContentProvider
|
||||
FutureOr<List<SnSticker>>
|
||||
>
|
||||
with $FutureModifier<List<SnSticker>>, $FutureProvider<List<SnSticker>> {
|
||||
const StickerPackContentProvider._({
|
||||
StickerPackContentProvider._({
|
||||
required StickerPackContentFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -69,7 +69,7 @@ String _$stickerPackContentHash() =>
|
||||
|
||||
final class StickerPackContentFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<List<SnSticker>>, String> {
|
||||
const StickerPackContentFamily._()
|
||||
StickerPackContentFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'stickerPackContentProvider',
|
||||
@@ -86,7 +86,7 @@ final class StickerPackContentFamily extends $Family
|
||||
}
|
||||
|
||||
@ProviderFor(stickerPackSticker)
|
||||
const stickerPackStickerProvider = StickerPackStickerFamily._();
|
||||
final stickerPackStickerProvider = StickerPackStickerFamily._();
|
||||
|
||||
final class StickerPackStickerProvider
|
||||
extends
|
||||
@@ -96,7 +96,7 @@ final class StickerPackStickerProvider
|
||||
FutureOr<SnSticker?>
|
||||
>
|
||||
with $FutureModifier<SnSticker?>, $FutureProvider<SnSticker?> {
|
||||
const StickerPackStickerProvider._({
|
||||
StickerPackStickerProvider._({
|
||||
required StickerPackStickerFamily super.from,
|
||||
required StickerWithPackQuery? super.argument,
|
||||
}) : super(
|
||||
@@ -145,7 +145,7 @@ String _$stickerPackStickerHash() =>
|
||||
final class StickerPackStickerFamily extends $Family
|
||||
with
|
||||
$FunctionalFamilyOverride<FutureOr<SnSticker?>, StickerWithPackQuery?> {
|
||||
const StickerPackStickerFamily._()
|
||||
StickerPackStickerFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'stickerPackStickerProvider',
|
||||
|
||||
@@ -10,7 +10,7 @@ part of 'stickers.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(stickerPack)
|
||||
const stickerPackProvider = StickerPackFamily._();
|
||||
final stickerPackProvider = StickerPackFamily._();
|
||||
|
||||
final class StickerPackProvider
|
||||
extends
|
||||
@@ -20,7 +20,7 @@ final class StickerPackProvider
|
||||
FutureOr<SnStickerPack?>
|
||||
>
|
||||
with $FutureModifier<SnStickerPack?>, $FutureProvider<SnStickerPack?> {
|
||||
const StickerPackProvider._({
|
||||
StickerPackProvider._({
|
||||
required StickerPackFamily super.from,
|
||||
required String? super.argument,
|
||||
}) : super(
|
||||
@@ -68,7 +68,7 @@ String _$stickerPackHash() => r'71ef84471237c8191918095094bdfc87d3920e77';
|
||||
|
||||
final class StickerPackFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<SnStickerPack?>, String?> {
|
||||
const StickerPackFamily._()
|
||||
StickerPackFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'stickerPackProvider',
|
||||
|
||||
@@ -10,7 +10,7 @@ part of 'app_secrets.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(customAppSecrets)
|
||||
const customAppSecretsProvider = CustomAppSecretsFamily._();
|
||||
final customAppSecretsProvider = CustomAppSecretsFamily._();
|
||||
|
||||
final class CustomAppSecretsProvider
|
||||
extends
|
||||
@@ -22,7 +22,7 @@ final class CustomAppSecretsProvider
|
||||
with
|
||||
$FutureModifier<List<CustomAppSecret>>,
|
||||
$FutureProvider<List<CustomAppSecret>> {
|
||||
const CustomAppSecretsProvider._({
|
||||
CustomAppSecretsProvider._({
|
||||
required CustomAppSecretsFamily super.from,
|
||||
required (String, String, String) super.argument,
|
||||
}) : super(
|
||||
@@ -74,7 +74,7 @@ final class CustomAppSecretsFamily extends $Family
|
||||
FutureOr<List<CustomAppSecret>>,
|
||||
(String, String, String)
|
||||
> {
|
||||
const CustomAppSecretsFamily._()
|
||||
CustomAppSecretsFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'customAppSecretsProvider',
|
||||
|
||||
@@ -10,7 +10,7 @@ part of 'apps.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(customApp)
|
||||
const customAppProvider = CustomAppFamily._();
|
||||
final customAppProvider = CustomAppFamily._();
|
||||
|
||||
final class CustomAppProvider
|
||||
extends
|
||||
@@ -20,7 +20,7 @@ final class CustomAppProvider
|
||||
FutureOr<CustomApp>
|
||||
>
|
||||
with $FutureModifier<CustomApp>, $FutureProvider<CustomApp> {
|
||||
const CustomAppProvider._({
|
||||
CustomAppProvider._({
|
||||
required CustomAppFamily super.from,
|
||||
required (String, String, String) super.argument,
|
||||
}) : super(
|
||||
@@ -71,7 +71,7 @@ final class CustomAppFamily extends $Family
|
||||
FutureOr<CustomApp>,
|
||||
(String, String, String)
|
||||
> {
|
||||
const CustomAppFamily._()
|
||||
CustomAppFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'customAppProvider',
|
||||
@@ -94,7 +94,7 @@ final class CustomAppFamily extends $Family
|
||||
}
|
||||
|
||||
@ProviderFor(customApps)
|
||||
const customAppsProvider = CustomAppsFamily._();
|
||||
final customAppsProvider = CustomAppsFamily._();
|
||||
|
||||
final class CustomAppsProvider
|
||||
extends
|
||||
@@ -104,7 +104,7 @@ final class CustomAppsProvider
|
||||
FutureOr<List<CustomApp>>
|
||||
>
|
||||
with $FutureModifier<List<CustomApp>>, $FutureProvider<List<CustomApp>> {
|
||||
const CustomAppsProvider._({
|
||||
CustomAppsProvider._({
|
||||
required CustomAppsFamily super.from,
|
||||
required (String, String) super.argument,
|
||||
}) : super(
|
||||
@@ -153,7 +153,7 @@ String _$customAppsHash() => r'450bedaf4220b8963cb44afeb14d4c0e80f01b11';
|
||||
final class CustomAppsFamily extends $Family
|
||||
with
|
||||
$FunctionalFamilyOverride<FutureOr<List<CustomApp>>, (String, String)> {
|
||||
const CustomAppsFamily._()
|
||||
CustomAppsFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'customAppsProvider',
|
||||
|
||||
@@ -10,7 +10,7 @@ part of 'bot_keys.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(botKeys)
|
||||
const botKeysProvider = BotKeysFamily._();
|
||||
final botKeysProvider = BotKeysFamily._();
|
||||
|
||||
final class BotKeysProvider
|
||||
extends
|
||||
@@ -22,7 +22,7 @@ final class BotKeysProvider
|
||||
with
|
||||
$FutureModifier<List<SnAccountApiKey>>,
|
||||
$FutureProvider<List<SnAccountApiKey>> {
|
||||
const BotKeysProvider._({
|
||||
BotKeysProvider._({
|
||||
required BotKeysFamily super.from,
|
||||
required (String, String, String) super.argument,
|
||||
}) : super(
|
||||
@@ -74,7 +74,7 @@ final class BotKeysFamily extends $Family
|
||||
FutureOr<List<SnAccountApiKey>>,
|
||||
(String, String, String)
|
||||
> {
|
||||
const BotKeysFamily._()
|
||||
BotKeysFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'botKeysProvider',
|
||||
|
||||
@@ -10,7 +10,7 @@ part of 'bots.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(bots)
|
||||
const botsProvider = BotsFamily._();
|
||||
final botsProvider = BotsFamily._();
|
||||
|
||||
final class BotsProvider
|
||||
extends
|
||||
@@ -20,7 +20,7 @@ final class BotsProvider
|
||||
FutureOr<List<Bot>>
|
||||
>
|
||||
with $FutureModifier<List<Bot>>, $FutureProvider<List<Bot>> {
|
||||
const BotsProvider._({
|
||||
BotsProvider._({
|
||||
required BotsFamily super.from,
|
||||
required (String, String) super.argument,
|
||||
}) : super(
|
||||
@@ -67,7 +67,7 @@ String _$botsHash() => r'15cefd5781350eb68208a342e85fcb0b9e0e3269';
|
||||
|
||||
final class BotsFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<List<Bot>>, (String, String)> {
|
||||
const BotsFamily._()
|
||||
BotsFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'botsProvider',
|
||||
|
||||
@@ -10,7 +10,7 @@ part of 'edit_app.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(customApp)
|
||||
const customAppProvider = CustomAppFamily._();
|
||||
final customAppProvider = CustomAppFamily._();
|
||||
|
||||
final class CustomAppProvider
|
||||
extends
|
||||
@@ -20,7 +20,7 @@ final class CustomAppProvider
|
||||
FutureOr<CustomApp?>
|
||||
>
|
||||
with $FutureModifier<CustomApp?>, $FutureProvider<CustomApp?> {
|
||||
const CustomAppProvider._({
|
||||
CustomAppProvider._({
|
||||
required CustomAppFamily super.from,
|
||||
required (String, String, String) super.argument,
|
||||
}) : super(
|
||||
@@ -71,7 +71,7 @@ final class CustomAppFamily extends $Family
|
||||
FutureOr<CustomApp?>,
|
||||
(String, String, String)
|
||||
> {
|
||||
const CustomAppFamily._()
|
||||
CustomAppFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'customAppProvider',
|
||||
|
||||
@@ -10,12 +10,12 @@ part of 'edit_bot.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(bot)
|
||||
const botProvider = BotFamily._();
|
||||
final botProvider = BotFamily._();
|
||||
|
||||
final class BotProvider
|
||||
extends $FunctionalProvider<AsyncValue<Bot?>, Bot?, FutureOr<Bot?>>
|
||||
with $FutureModifier<Bot?>, $FutureProvider<Bot?> {
|
||||
const BotProvider._({
|
||||
BotProvider._({
|
||||
required BotFamily super.from,
|
||||
required (String, String, String) super.argument,
|
||||
}) : super(
|
||||
@@ -62,7 +62,7 @@ String _$botHash() => r'7bec47bb2a4061a5babc6d6d19c3d4c320c91188';
|
||||
|
||||
final class BotFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<Bot?>, (String, String, String)> {
|
||||
const BotFamily._()
|
||||
BotFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'botProvider',
|
||||
|
||||
@@ -10,7 +10,7 @@ part of 'edit_project.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(devProject)
|
||||
const devProjectProvider = DevProjectFamily._();
|
||||
final devProjectProvider = DevProjectFamily._();
|
||||
|
||||
final class DevProjectProvider
|
||||
extends
|
||||
@@ -20,7 +20,7 @@ final class DevProjectProvider
|
||||
FutureOr<DevProject?>
|
||||
>
|
||||
with $FutureModifier<DevProject?>, $FutureProvider<DevProject?> {
|
||||
const DevProjectProvider._({
|
||||
DevProjectProvider._({
|
||||
required DevProjectFamily super.from,
|
||||
required (String, String) super.argument,
|
||||
}) : super(
|
||||
@@ -68,7 +68,7 @@ String _$devProjectHash() => r'd92be3f5cdc510c2a377615ed5c70622a6842bf2';
|
||||
|
||||
final class DevProjectFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<DevProject?>, (String, String)> {
|
||||
const DevProjectFamily._()
|
||||
DevProjectFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'devProjectProvider',
|
||||
|
||||
@@ -10,7 +10,7 @@ part of 'hub.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(developerStats)
|
||||
const developerStatsProvider = DeveloperStatsFamily._();
|
||||
final developerStatsProvider = DeveloperStatsFamily._();
|
||||
|
||||
final class DeveloperStatsProvider
|
||||
extends
|
||||
@@ -20,7 +20,7 @@ final class DeveloperStatsProvider
|
||||
FutureOr<DeveloperStats?>
|
||||
>
|
||||
with $FutureModifier<DeveloperStats?>, $FutureProvider<DeveloperStats?> {
|
||||
const DeveloperStatsProvider._({
|
||||
DeveloperStatsProvider._({
|
||||
required DeveloperStatsFamily super.from,
|
||||
required String? super.argument,
|
||||
}) : super(
|
||||
@@ -68,7 +68,7 @@ String _$developerStatsHash() => r'45546f29ec7cd1a9c3a4e0f4e39275e78bf34755';
|
||||
|
||||
final class DeveloperStatsFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<DeveloperStats?>, String?> {
|
||||
const DeveloperStatsFamily._()
|
||||
DeveloperStatsFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'developerStatsProvider',
|
||||
@@ -85,7 +85,7 @@ final class DeveloperStatsFamily extends $Family
|
||||
}
|
||||
|
||||
@ProviderFor(developers)
|
||||
const developersProvider = DevelopersProvider._();
|
||||
final developersProvider = DevelopersProvider._();
|
||||
|
||||
final class DevelopersProvider
|
||||
extends
|
||||
@@ -97,7 +97,7 @@ final class DevelopersProvider
|
||||
with
|
||||
$FutureModifier<List<SnDeveloper>>,
|
||||
$FutureProvider<List<SnDeveloper>> {
|
||||
const DevelopersProvider._()
|
||||
DevelopersProvider._()
|
||||
: super(
|
||||
from: null,
|
||||
argument: null,
|
||||
@@ -126,7 +126,7 @@ final class DevelopersProvider
|
||||
String _$developersHash() => r'252341098617ac398ce133994453f318dd3edbd2';
|
||||
|
||||
@ProviderFor(devProjects)
|
||||
const devProjectsProvider = DevProjectsFamily._();
|
||||
final devProjectsProvider = DevProjectsFamily._();
|
||||
|
||||
final class DevProjectsProvider
|
||||
extends
|
||||
@@ -136,7 +136,7 @@ final class DevProjectsProvider
|
||||
FutureOr<List<DevProject>>
|
||||
>
|
||||
with $FutureModifier<List<DevProject>>, $FutureProvider<List<DevProject>> {
|
||||
const DevProjectsProvider._({
|
||||
DevProjectsProvider._({
|
||||
required DevProjectsFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -184,7 +184,7 @@ String _$devProjectsHash() => r'715b395bebda785d38691ffee3b88e50b498c91a';
|
||||
|
||||
final class DevProjectsFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<List<DevProject>>, String> {
|
||||
const DevProjectsFamily._()
|
||||
DevProjectsFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'devProjectsProvider',
|
||||
|
||||
@@ -10,7 +10,7 @@ part of 'articles.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(subscribedFeeds)
|
||||
const subscribedFeedsProvider = SubscribedFeedsProvider._();
|
||||
final subscribedFeedsProvider = SubscribedFeedsProvider._();
|
||||
|
||||
final class SubscribedFeedsProvider
|
||||
extends
|
||||
@@ -20,7 +20,7 @@ final class SubscribedFeedsProvider
|
||||
FutureOr<List<SnWebFeed>>
|
||||
>
|
||||
with $FutureModifier<List<SnWebFeed>>, $FutureProvider<List<SnWebFeed>> {
|
||||
const SubscribedFeedsProvider._()
|
||||
SubscribedFeedsProvider._()
|
||||
: super(
|
||||
from: null,
|
||||
argument: null,
|
||||
|
||||
@@ -10,7 +10,7 @@ part of 'feed_detail.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(marketplaceWebFeed)
|
||||
const marketplaceWebFeedProvider = MarketplaceWebFeedFamily._();
|
||||
final marketplaceWebFeedProvider = MarketplaceWebFeedFamily._();
|
||||
|
||||
final class MarketplaceWebFeedProvider
|
||||
extends
|
||||
@@ -20,7 +20,7 @@ final class MarketplaceWebFeedProvider
|
||||
FutureOr<SnWebFeed>
|
||||
>
|
||||
with $FutureModifier<SnWebFeed>, $FutureProvider<SnWebFeed> {
|
||||
const MarketplaceWebFeedProvider._({
|
||||
MarketplaceWebFeedProvider._({
|
||||
required MarketplaceWebFeedFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -68,7 +68,7 @@ String _$marketplaceWebFeedHash() =>
|
||||
|
||||
final class MarketplaceWebFeedFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<SnWebFeed>, String> {
|
||||
const MarketplaceWebFeedFamily._()
|
||||
MarketplaceWebFeedFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'marketplaceWebFeedProvider',
|
||||
@@ -87,7 +87,7 @@ final class MarketplaceWebFeedFamily extends $Family
|
||||
/// Provider for web feed subscription status
|
||||
|
||||
@ProviderFor(marketplaceWebFeedSubscription)
|
||||
const marketplaceWebFeedSubscriptionProvider =
|
||||
final marketplaceWebFeedSubscriptionProvider =
|
||||
MarketplaceWebFeedSubscriptionFamily._();
|
||||
|
||||
/// Provider for web feed subscription status
|
||||
@@ -96,7 +96,7 @@ final class MarketplaceWebFeedSubscriptionProvider
|
||||
extends $FunctionalProvider<AsyncValue<bool>, bool, FutureOr<bool>>
|
||||
with $FutureModifier<bool>, $FutureProvider<bool> {
|
||||
/// Provider for web feed subscription status
|
||||
const MarketplaceWebFeedSubscriptionProvider._({
|
||||
MarketplaceWebFeedSubscriptionProvider._({
|
||||
required MarketplaceWebFeedSubscriptionFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -147,7 +147,7 @@ String _$marketplaceWebFeedSubscriptionHash() =>
|
||||
|
||||
final class MarketplaceWebFeedSubscriptionFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<bool>, String> {
|
||||
const MarketplaceWebFeedSubscriptionFamily._()
|
||||
MarketplaceWebFeedSubscriptionFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'marketplaceWebFeedSubscriptionProvider',
|
||||
|
||||
@@ -10,7 +10,7 @@ part of 'lottery.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(lotteryTickets)
|
||||
const lotteryTicketsProvider = LotteryTicketsFamily._();
|
||||
final lotteryTicketsProvider = LotteryTicketsFamily._();
|
||||
|
||||
final class LotteryTicketsProvider
|
||||
extends
|
||||
@@ -22,7 +22,7 @@ final class LotteryTicketsProvider
|
||||
with
|
||||
$FutureModifier<List<SnLotteryTicket>>,
|
||||
$FutureProvider<List<SnLotteryTicket>> {
|
||||
const LotteryTicketsProvider._({
|
||||
LotteryTicketsProvider._({
|
||||
required LotteryTicketsFamily super.from,
|
||||
required ({int offset, int take}) super.argument,
|
||||
}) : super(
|
||||
@@ -74,7 +74,7 @@ final class LotteryTicketsFamily extends $Family
|
||||
FutureOr<List<SnLotteryTicket>>,
|
||||
({int offset, int take})
|
||||
> {
|
||||
const LotteryTicketsFamily._()
|
||||
LotteryTicketsFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'lotteryTicketsProvider',
|
||||
@@ -94,7 +94,7 @@ final class LotteryTicketsFamily extends $Family
|
||||
}
|
||||
|
||||
@ProviderFor(lotteryRecords)
|
||||
const lotteryRecordsProvider = LotteryRecordsFamily._();
|
||||
final lotteryRecordsProvider = LotteryRecordsFamily._();
|
||||
|
||||
final class LotteryRecordsProvider
|
||||
extends
|
||||
@@ -106,7 +106,7 @@ final class LotteryRecordsProvider
|
||||
with
|
||||
$FutureModifier<List<SnLotteryRecord>>,
|
||||
$FutureProvider<List<SnLotteryRecord>> {
|
||||
const LotteryRecordsProvider._({
|
||||
LotteryRecordsProvider._({
|
||||
required LotteryRecordsFamily super.from,
|
||||
required ({int offset, int take}) super.argument,
|
||||
}) : super(
|
||||
@@ -158,7 +158,7 @@ final class LotteryRecordsFamily extends $Family
|
||||
FutureOr<List<SnLotteryRecord>>,
|
||||
({int offset, int take})
|
||||
> {
|
||||
const LotteryRecordsFamily._()
|
||||
LotteryRecordsFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'lotteryRecordsProvider',
|
||||
|
||||
@@ -10,12 +10,12 @@ part of 'notification.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(NotificationUnreadCountNotifier)
|
||||
const notificationUnreadCountProvider =
|
||||
final notificationUnreadCountProvider =
|
||||
NotificationUnreadCountNotifierProvider._();
|
||||
|
||||
final class NotificationUnreadCountNotifierProvider
|
||||
extends $AsyncNotifierProvider<NotificationUnreadCountNotifier, int> {
|
||||
const NotificationUnreadCountNotifierProvider._()
|
||||
NotificationUnreadCountNotifierProvider._()
|
||||
: super(
|
||||
from: null,
|
||||
argument: null,
|
||||
@@ -42,7 +42,6 @@ abstract class _$NotificationUnreadCountNotifier extends $AsyncNotifier<int> {
|
||||
@$mustCallSuper
|
||||
@override
|
||||
void runBuild() {
|
||||
final created = build();
|
||||
final ref = this.ref as $Ref<AsyncValue<int>, int>;
|
||||
final element =
|
||||
ref.element
|
||||
@@ -52,6 +51,6 @@ abstract class _$NotificationUnreadCountNotifier extends $AsyncNotifier<int> {
|
||||
Object?,
|
||||
Object?
|
||||
>;
|
||||
element.handleValue(ref, created);
|
||||
element.handleCreate(ref, build);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -10,7 +10,7 @@ part of 'post_category_detail.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(postCategory)
|
||||
const postCategoryProvider = PostCategoryFamily._();
|
||||
final postCategoryProvider = PostCategoryFamily._();
|
||||
|
||||
final class PostCategoryProvider
|
||||
extends
|
||||
@@ -20,7 +20,7 @@ final class PostCategoryProvider
|
||||
FutureOr<SnPostCategory>
|
||||
>
|
||||
with $FutureModifier<SnPostCategory>, $FutureProvider<SnPostCategory> {
|
||||
const PostCategoryProvider._({
|
||||
PostCategoryProvider._({
|
||||
required PostCategoryFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -68,7 +68,7 @@ String _$postCategoryHash() => r'0df2de729ba96819ee37377314615abef0c99547';
|
||||
|
||||
final class PostCategoryFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<SnPostCategory>, String> {
|
||||
const PostCategoryFamily._()
|
||||
PostCategoryFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'postCategoryProvider',
|
||||
@@ -85,7 +85,7 @@ final class PostCategoryFamily extends $Family
|
||||
}
|
||||
|
||||
@ProviderFor(postTag)
|
||||
const postTagProvider = PostTagFamily._();
|
||||
final postTagProvider = PostTagFamily._();
|
||||
|
||||
final class PostTagProvider
|
||||
extends
|
||||
@@ -95,7 +95,7 @@ final class PostTagProvider
|
||||
FutureOr<SnPostTag>
|
||||
>
|
||||
with $FutureModifier<SnPostTag>, $FutureProvider<SnPostTag> {
|
||||
const PostTagProvider._({
|
||||
PostTagProvider._({
|
||||
required PostTagFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -142,7 +142,7 @@ String _$postTagHash() => r'e050fdf9af81a843a9abd9cf979dd2672e0a2b93';
|
||||
|
||||
final class PostTagFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<SnPostTag>, String> {
|
||||
const PostTagFamily._()
|
||||
PostTagFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'postTagProvider',
|
||||
@@ -159,7 +159,7 @@ final class PostTagFamily extends $Family
|
||||
}
|
||||
|
||||
@ProviderFor(postCategorySubscription)
|
||||
const postCategorySubscriptionProvider = PostCategorySubscriptionFamily._();
|
||||
final postCategorySubscriptionProvider = PostCategorySubscriptionFamily._();
|
||||
|
||||
final class PostCategorySubscriptionProvider
|
||||
extends
|
||||
@@ -171,7 +171,7 @@ final class PostCategorySubscriptionProvider
|
||||
with
|
||||
$FutureModifier<SnCategorySubscription?>,
|
||||
$FutureProvider<SnCategorySubscription?> {
|
||||
const PostCategorySubscriptionProvider._({
|
||||
PostCategorySubscriptionProvider._({
|
||||
required PostCategorySubscriptionFamily super.from,
|
||||
required (String, bool) super.argument,
|
||||
}) : super(
|
||||
@@ -225,7 +225,7 @@ final class PostCategorySubscriptionFamily extends $Family
|
||||
FutureOr<SnCategorySubscription?>,
|
||||
(String, bool)
|
||||
> {
|
||||
const PostCategorySubscriptionFamily._()
|
||||
PostCategorySubscriptionFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'postCategorySubscriptionProvider',
|
||||
|
||||
@@ -10,12 +10,12 @@ part of 'post_detail.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(post)
|
||||
const postProvider = PostFamily._();
|
||||
final postProvider = PostFamily._();
|
||||
|
||||
final class PostProvider
|
||||
extends $FunctionalProvider<AsyncValue<SnPost?>, SnPost?, FutureOr<SnPost?>>
|
||||
with $FutureModifier<SnPost?>, $FutureProvider<SnPost?> {
|
||||
const PostProvider._({
|
||||
PostProvider._({
|
||||
required PostFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -62,7 +62,7 @@ String _$postHash() => r'66c2eb074c6d7467fef81cab70a13356e648e661';
|
||||
|
||||
final class PostFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<SnPost?>, String> {
|
||||
const PostFamily._()
|
||||
PostFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'postProvider',
|
||||
|
||||
@@ -10,7 +10,7 @@ part of 'publisher_profile.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(publisher)
|
||||
const publisherProvider = PublisherFamily._();
|
||||
final publisherProvider = PublisherFamily._();
|
||||
|
||||
final class PublisherProvider
|
||||
extends
|
||||
@@ -20,7 +20,7 @@ final class PublisherProvider
|
||||
FutureOr<SnPublisher>
|
||||
>
|
||||
with $FutureModifier<SnPublisher>, $FutureProvider<SnPublisher> {
|
||||
const PublisherProvider._({
|
||||
PublisherProvider._({
|
||||
required PublisherFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -68,7 +68,7 @@ String _$publisherHash() => r'a1da21f0275421382e2882fd52c4e061c4675cf7';
|
||||
|
||||
final class PublisherFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<SnPublisher>, String> {
|
||||
const PublisherFamily._()
|
||||
PublisherFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'publisherProvider',
|
||||
@@ -85,7 +85,7 @@ final class PublisherFamily extends $Family
|
||||
}
|
||||
|
||||
@ProviderFor(publisherBadges)
|
||||
const publisherBadgesProvider = PublisherBadgesFamily._();
|
||||
final publisherBadgesProvider = PublisherBadgesFamily._();
|
||||
|
||||
final class PublisherBadgesProvider
|
||||
extends
|
||||
@@ -97,7 +97,7 @@ final class PublisherBadgesProvider
|
||||
with
|
||||
$FutureModifier<List<SnAccountBadge>>,
|
||||
$FutureProvider<List<SnAccountBadge>> {
|
||||
const PublisherBadgesProvider._({
|
||||
PublisherBadgesProvider._({
|
||||
required PublisherBadgesFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -145,7 +145,7 @@ String _$publisherBadgesHash() => r'26776fd6cb611953f52bdb6a7dfa004c34d5cd8e';
|
||||
|
||||
final class PublisherBadgesFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<List<SnAccountBadge>>, String> {
|
||||
const PublisherBadgesFamily._()
|
||||
PublisherBadgesFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'publisherBadgesProvider',
|
||||
@@ -162,7 +162,7 @@ final class PublisherBadgesFamily extends $Family
|
||||
}
|
||||
|
||||
@ProviderFor(publisherSubscriptionStatus)
|
||||
const publisherSubscriptionStatusProvider =
|
||||
final publisherSubscriptionStatusProvider =
|
||||
PublisherSubscriptionStatusFamily._();
|
||||
|
||||
final class PublisherSubscriptionStatusProvider
|
||||
@@ -175,7 +175,7 @@ final class PublisherSubscriptionStatusProvider
|
||||
with
|
||||
$FutureModifier<SnPublisherSubscription?>,
|
||||
$FutureProvider<SnPublisherSubscription?> {
|
||||
const PublisherSubscriptionStatusProvider._({
|
||||
PublisherSubscriptionStatusProvider._({
|
||||
required PublisherSubscriptionStatusFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -225,7 +225,7 @@ String _$publisherSubscriptionStatusHash() =>
|
||||
|
||||
final class PublisherSubscriptionStatusFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<SnPublisherSubscription?>, String> {
|
||||
const PublisherSubscriptionStatusFamily._()
|
||||
PublisherSubscriptionStatusFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'publisherSubscriptionStatusProvider',
|
||||
@@ -242,13 +242,13 @@ final class PublisherSubscriptionStatusFamily extends $Family
|
||||
}
|
||||
|
||||
@ProviderFor(publisherAppbarForcegroundColor)
|
||||
const publisherAppbarForcegroundColorProvider =
|
||||
final publisherAppbarForcegroundColorProvider =
|
||||
PublisherAppbarForcegroundColorFamily._();
|
||||
|
||||
final class PublisherAppbarForcegroundColorProvider
|
||||
extends $FunctionalProvider<AsyncValue<Color?>, Color?, FutureOr<Color?>>
|
||||
with $FutureModifier<Color?>, $FutureProvider<Color?> {
|
||||
const PublisherAppbarForcegroundColorProvider._({
|
||||
PublisherAppbarForcegroundColorProvider._({
|
||||
required PublisherAppbarForcegroundColorFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -297,7 +297,7 @@ String _$publisherAppbarForcegroundColorHash() =>
|
||||
|
||||
final class PublisherAppbarForcegroundColorFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<Color?>, String> {
|
||||
const PublisherAppbarForcegroundColorFamily._()
|
||||
PublisherAppbarForcegroundColorFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'publisherAppbarForcegroundColorProvider',
|
||||
@@ -314,7 +314,7 @@ final class PublisherAppbarForcegroundColorFamily extends $Family
|
||||
}
|
||||
|
||||
@ProviderFor(publisherHeatmap)
|
||||
const publisherHeatmapProvider = PublisherHeatmapFamily._();
|
||||
final publisherHeatmapProvider = PublisherHeatmapFamily._();
|
||||
|
||||
final class PublisherHeatmapProvider
|
||||
extends
|
||||
@@ -324,7 +324,7 @@ final class PublisherHeatmapProvider
|
||||
FutureOr<SnHeatmap?>
|
||||
>
|
||||
with $FutureModifier<SnHeatmap?>, $FutureProvider<SnHeatmap?> {
|
||||
const PublisherHeatmapProvider._({
|
||||
PublisherHeatmapProvider._({
|
||||
required PublisherHeatmapFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -371,7 +371,7 @@ String _$publisherHeatmapHash() => r'86db275ce3861a2855b5ec35fbfef85fc47b23a6';
|
||||
|
||||
final class PublisherHeatmapFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<SnHeatmap?>, String> {
|
||||
const PublisherHeatmapFamily._()
|
||||
PublisherHeatmapFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'publisherHeatmapProvider',
|
||||
|
||||
@@ -10,7 +10,7 @@ part of 'realms.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(realmsJoined)
|
||||
const realmsJoinedProvider = RealmsJoinedProvider._();
|
||||
final realmsJoinedProvider = RealmsJoinedProvider._();
|
||||
|
||||
final class RealmsJoinedProvider
|
||||
extends
|
||||
@@ -20,7 +20,7 @@ final class RealmsJoinedProvider
|
||||
FutureOr<List<SnRealm>>
|
||||
>
|
||||
with $FutureModifier<List<SnRealm>>, $FutureProvider<List<SnRealm>> {
|
||||
const RealmsJoinedProvider._()
|
||||
RealmsJoinedProvider._()
|
||||
: super(
|
||||
from: null,
|
||||
argument: null,
|
||||
@@ -49,13 +49,13 @@ final class RealmsJoinedProvider
|
||||
String _$realmsJoinedHash() => r'b15029acd38f03bbbb8708adb78f25ac357a0421';
|
||||
|
||||
@ProviderFor(realm)
|
||||
const realmProvider = RealmFamily._();
|
||||
final realmProvider = RealmFamily._();
|
||||
|
||||
final class RealmProvider
|
||||
extends
|
||||
$FunctionalProvider<AsyncValue<SnRealm?>, SnRealm?, FutureOr<SnRealm?>>
|
||||
with $FutureModifier<SnRealm?>, $FutureProvider<SnRealm?> {
|
||||
const RealmProvider._({
|
||||
RealmProvider._({
|
||||
required RealmFamily super.from,
|
||||
required String? super.argument,
|
||||
}) : super(
|
||||
@@ -102,7 +102,7 @@ String _$realmHash() => r'71a126ab2810566646e1629290c1ce9ffa0839e3';
|
||||
|
||||
final class RealmFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<SnRealm?>, String?> {
|
||||
const RealmFamily._()
|
||||
RealmFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'realmProvider',
|
||||
@@ -119,7 +119,7 @@ final class RealmFamily extends $Family
|
||||
}
|
||||
|
||||
@ProviderFor(realmInvites)
|
||||
const realmInvitesProvider = RealmInvitesProvider._();
|
||||
final realmInvitesProvider = RealmInvitesProvider._();
|
||||
|
||||
final class RealmInvitesProvider
|
||||
extends
|
||||
@@ -131,7 +131,7 @@ final class RealmInvitesProvider
|
||||
with
|
||||
$FutureModifier<List<SnRealmMember>>,
|
||||
$FutureProvider<List<SnRealmMember>> {
|
||||
const RealmInvitesProvider._()
|
||||
RealmInvitesProvider._()
|
||||
: super(
|
||||
from: null,
|
||||
argument: null,
|
||||
|
||||
@@ -13,7 +13,7 @@ part of 'pack_detail.dart';
|
||||
/// API interactions are intentionally left blank per request.
|
||||
|
||||
@ProviderFor(marketplaceStickerPackContent)
|
||||
const marketplaceStickerPackContentProvider =
|
||||
final marketplaceStickerPackContentProvider =
|
||||
MarketplaceStickerPackContentFamily._();
|
||||
|
||||
/// Marketplace version of sticker pack detail page (no publisher dependency).
|
||||
@@ -31,7 +31,7 @@ final class MarketplaceStickerPackContentProvider
|
||||
/// Marketplace version of sticker pack detail page (no publisher dependency).
|
||||
/// Shows all stickers in the pack and provides a button to add the sticker.
|
||||
/// API interactions are intentionally left blank per request.
|
||||
const MarketplaceStickerPackContentProvider._({
|
||||
MarketplaceStickerPackContentProvider._({
|
||||
required MarketplaceStickerPackContentFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -85,7 +85,7 @@ String _$marketplaceStickerPackContentHash() =>
|
||||
|
||||
final class MarketplaceStickerPackContentFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<List<SnSticker>>, String> {
|
||||
const MarketplaceStickerPackContentFamily._()
|
||||
MarketplaceStickerPackContentFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'marketplaceStickerPackContentProvider',
|
||||
@@ -106,13 +106,13 @@ final class MarketplaceStickerPackContentFamily extends $Family
|
||||
}
|
||||
|
||||
@ProviderFor(marketplaceStickerPackOwnership)
|
||||
const marketplaceStickerPackOwnershipProvider =
|
||||
final marketplaceStickerPackOwnershipProvider =
|
||||
MarketplaceStickerPackOwnershipFamily._();
|
||||
|
||||
final class MarketplaceStickerPackOwnershipProvider
|
||||
extends $FunctionalProvider<AsyncValue<bool>, bool, FutureOr<bool>>
|
||||
with $FutureModifier<bool>, $FutureProvider<bool> {
|
||||
const MarketplaceStickerPackOwnershipProvider._({
|
||||
MarketplaceStickerPackOwnershipProvider._({
|
||||
required MarketplaceStickerPackOwnershipFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -161,7 +161,7 @@ String _$marketplaceStickerPackOwnershipHash() =>
|
||||
|
||||
final class MarketplaceStickerPackOwnershipFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<bool>, String> {
|
||||
const MarketplaceStickerPackOwnershipFamily._()
|
||||
MarketplaceStickerPackOwnershipFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'marketplaceStickerPackOwnershipProvider',
|
||||
|
||||
@@ -10,12 +10,12 @@ part of 'think.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(thoughtAvailableStaus)
|
||||
const thoughtAvailableStausProvider = ThoughtAvailableStausProvider._();
|
||||
final thoughtAvailableStausProvider = ThoughtAvailableStausProvider._();
|
||||
|
||||
final class ThoughtAvailableStausProvider
|
||||
extends $FunctionalProvider<AsyncValue<bool>, bool, FutureOr<bool>>
|
||||
with $FutureModifier<bool>, $FutureProvider<bool> {
|
||||
const ThoughtAvailableStausProvider._()
|
||||
ThoughtAvailableStausProvider._()
|
||||
: super(
|
||||
from: null,
|
||||
argument: null,
|
||||
@@ -44,7 +44,7 @@ String _$thoughtAvailableStausHash() =>
|
||||
r'720e04e56bff8c4d4ca6854ce997da4e7926c84c';
|
||||
|
||||
@ProviderFor(thoughtSequence)
|
||||
const thoughtSequenceProvider = ThoughtSequenceFamily._();
|
||||
final thoughtSequenceProvider = ThoughtSequenceFamily._();
|
||||
|
||||
final class ThoughtSequenceProvider
|
||||
extends
|
||||
@@ -56,7 +56,7 @@ final class ThoughtSequenceProvider
|
||||
with
|
||||
$FutureModifier<List<SnThinkingThought>>,
|
||||
$FutureProvider<List<SnThinkingThought>> {
|
||||
const ThoughtSequenceProvider._({
|
||||
ThoughtSequenceProvider._({
|
||||
required ThoughtSequenceFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -104,7 +104,7 @@ String _$thoughtSequenceHash() => r'2a93c0a04f9a720ba474c02a36502940fb7f3ed7';
|
||||
|
||||
final class ThoughtSequenceFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<List<SnThinkingThought>>, String> {
|
||||
const ThoughtSequenceFamily._()
|
||||
ThoughtSequenceFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'thoughtSequenceProvider',
|
||||
@@ -121,7 +121,7 @@ final class ThoughtSequenceFamily extends $Family
|
||||
}
|
||||
|
||||
@ProviderFor(thoughtServices)
|
||||
const thoughtServicesProvider = ThoughtServicesProvider._();
|
||||
final thoughtServicesProvider = ThoughtServicesProvider._();
|
||||
|
||||
final class ThoughtServicesProvider
|
||||
extends
|
||||
@@ -133,7 +133,7 @@ final class ThoughtServicesProvider
|
||||
with
|
||||
$FutureModifier<ThoughtServicesResponse>,
|
||||
$FutureProvider<ThoughtServicesResponse> {
|
||||
const ThoughtServicesProvider._()
|
||||
ThoughtServicesProvider._()
|
||||
: super(
|
||||
from: null,
|
||||
argument: null,
|
||||
|
||||
@@ -10,7 +10,7 @@ part of 'wallet.dart';
|
||||
// ignore_for_file: type=lint, type=warning
|
||||
|
||||
@ProviderFor(walletCurrent)
|
||||
const walletCurrentProvider = WalletCurrentProvider._();
|
||||
final walletCurrentProvider = WalletCurrentProvider._();
|
||||
|
||||
final class WalletCurrentProvider
|
||||
extends
|
||||
@@ -20,7 +20,7 @@ final class WalletCurrentProvider
|
||||
FutureOr<SnWallet?>
|
||||
>
|
||||
with $FutureModifier<SnWallet?>, $FutureProvider<SnWallet?> {
|
||||
const WalletCurrentProvider._()
|
||||
WalletCurrentProvider._()
|
||||
: super(
|
||||
from: null,
|
||||
argument: null,
|
||||
@@ -48,7 +48,7 @@ final class WalletCurrentProvider
|
||||
String _$walletCurrentHash() => r'bdc7cb27ce2286b561a03522085cc4efc884faad';
|
||||
|
||||
@ProviderFor(walletStats)
|
||||
const walletStatsProvider = WalletStatsProvider._();
|
||||
final walletStatsProvider = WalletStatsProvider._();
|
||||
|
||||
final class WalletStatsProvider
|
||||
extends
|
||||
@@ -58,7 +58,7 @@ final class WalletStatsProvider
|
||||
FutureOr<SnWalletStats>
|
||||
>
|
||||
with $FutureModifier<SnWalletStats>, $FutureProvider<SnWalletStats> {
|
||||
const WalletStatsProvider._()
|
||||
WalletStatsProvider._()
|
||||
: super(
|
||||
from: null,
|
||||
argument: null,
|
||||
@@ -87,7 +87,7 @@ final class WalletStatsProvider
|
||||
String _$walletStatsHash() => r'2243011937b377a66cdf44cae144021cee69e82f';
|
||||
|
||||
@ProviderFor(walletFund)
|
||||
const walletFundProvider = WalletFundFamily._();
|
||||
final walletFundProvider = WalletFundFamily._();
|
||||
|
||||
final class WalletFundProvider
|
||||
extends
|
||||
@@ -97,7 +97,7 @@ final class WalletFundProvider
|
||||
FutureOr<SnWalletFund>
|
||||
>
|
||||
with $FutureModifier<SnWalletFund>, $FutureProvider<SnWalletFund> {
|
||||
const WalletFundProvider._({
|
||||
WalletFundProvider._({
|
||||
required WalletFundFamily super.from,
|
||||
required String super.argument,
|
||||
}) : super(
|
||||
@@ -145,7 +145,7 @@ String _$walletFundHash() => r'459efdee5e2775eedaa4312e0d317c218fa7e1fa';
|
||||
|
||||
final class WalletFundFamily extends $Family
|
||||
with $FunctionalFamilyOverride<FutureOr<SnWalletFund>, String> {
|
||||
const WalletFundFamily._()
|
||||
WalletFundFamily._()
|
||||
: super(
|
||||
retry: null,
|
||||
name: r'walletFundProvider',
|
||||
|
||||
Reference in New Issue
Block a user