Update flutter_local_notifications to min v19.0.0. Update app to use Swift Package Manager build process for all packages.

This commit is contained in:
Ryan Brown
2026-06-24 03:59:20 +00:00
parent 3ff9ff2352
commit c844cff67b
7 changed files with 181 additions and 140 deletions
+2 -2
View File
@@ -86,12 +86,12 @@ class AuthService {
}
try {
final token = await _helper.getToken();
if (token?.accessToken == null) {
if (token.accessToken == null) {
log('OAuth error: token null or missing accessToken');
return null;
}
final tokenMap = {
'accessToken': token!.accessToken,
'accessToken': token.accessToken,
'refreshToken': token.refreshToken,
};
final tokenJson = jsonEncode(tokenMap);