setIsAuthenticated method

void setIsAuthenticated(
  1. bool isAuthenticated
)

Implementation

void setIsAuthenticated(bool isAuthenticated) {
  for (var adapter in _adapters) {
    adapter.setIsAuthenticated(isAuthenticated);
  }
}