List<APIToken> expiredTokens({DateTime? now}) { now ??= DateTime.now(); return where((t) => t.isExpired(now: now)).toList(); }