AuthService constructor

AuthService({
  1. required ApiService apiService,
  2. required StorageService storageService,
})

Implementation

AuthService({
  required ApiService apiService,
  required StorageService storageService,
})  : _apiService = apiService,
      _storageService = storageService {
  _initFromStorage();
}