AuthState constructor

AuthState({
  1. required bool isAuthenticated,
  2. Map<String, dynamic>? employee,
  3. ExternalApiClass? externalApi,
})

Implementation

AuthState({
  required this.isAuthenticated,
  this.employee,
  this.externalApi,
});