authenticatedRemotes property

List<RemoteUiAdapter> get authenticatedRemotes

All remote adapters that are currently authenticated.

Note: UI should ensure only one is active, but backend supports multiple.

Implementation

List<RemoteUiAdapter> get authenticatedRemotes {
  return _remoteAdapters
      .where((p) => p.auth.isAuthenticatedNotifier.isAuthenticated)
      .toList();
}