tokenExpired method

  1. @override
Future<bool> tokenExpired()
override

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;
}