tokenExpired method
Checks if the current user's authentication token is expired.
Implementation
@override
Future<bool> tokenExpired() async {
// The app does not manage iCloud authentication tokens; the OS does.
// We can assume the token is always valid if the user is logged into iCloud.
return false;
}