@@ -562,6 +562,7 @@ class PerAccountStore extends PerAccountStoreBase with
562562 emoji: EmojiStoreImpl (core: core,
563563 allRealmEmoji: initialSnapshot.realmEmoji),
564564 userSettings: initialSnapshot.userSettings,
565+ hasZoomToken: initialSnapshot.hasZoomToken,
565566 pushDevices: PushDeviceManager (core: core),
566567 savedSnippets: SavedSnippetStoreImpl (core: core,
567568 savedSnippets: initialSnapshot.savedSnippets ?? []),
@@ -586,6 +587,7 @@ class PerAccountStore extends PerAccountStoreBase with
586587 required RealmStoreImpl realm,
587588 required EmojiStoreImpl emoji,
588589 required this .userSettings,
590+ required this .hasZoomToken,
589591 required this .pushDevices,
590592 required SavedSnippetStoreImpl savedSnippets,
591593 required this .typingNotifier,
@@ -658,6 +660,8 @@ class PerAccountStore extends PerAccountStoreBase with
658660
659661 final UserSettings userSettings;
660662
663+ bool hasZoomToken;
664+
661665 final PushDeviceManager pushDevices;
662666
663667 @override
0 commit comments