File tree Expand file tree Collapse file tree 1 file changed +2
-5
lines changed
mobile-app/lib/models/main Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -36,8 +36,7 @@ class FccUserModel {
3636
3737 final bool emailVerified;
3838 final bool isEmailVerified;
39- final bool acceptedPrivacyTerms;
40- final bool sendQuincyEmail;
39+ final bool ? sendQuincyEmail;
4140
4241 final bool isCheater;
4342 final bool isDonating;
@@ -99,8 +98,7 @@ class FccUserModel {
9998 this .about,
10099 required this .emailVerified,
101100 required this .isEmailVerified,
102- required this .acceptedPrivacyTerms,
103- required this .sendQuincyEmail,
101+ this .sendQuincyEmail,
104102 required this .isCheater,
105103 required this .isDonating,
106104 required this .isHonest,
@@ -154,7 +152,6 @@ class FccUserModel {
154152 about: data['about' ],
155153 emailVerified: data['emailVerified' ],
156154 isEmailVerified: data['isEmailVerified' ],
157- acceptedPrivacyTerms: data['acceptedPrivacyTerms' ],
158155 sendQuincyEmail: data['sendQuincyEmail' ],
159156 isCheater: data['isCheater' ],
160157 isDonating: data['isDonating' ] ?? false ,
You can’t perform that action at this time.
0 commit comments