getUserRepo method

DataHandlerUserRepo getUserRepo()

Returns an instance of DataHandlerUserRepo for managing user-related data operations using both API and database.

This method provides access to user-specific repository operations, which interact with both the API and the local database.

Returns an instance of DataHandlerUserRepo.

Implementation

DataHandlerUserRepo getUserRepo() {
  return DataHandlerUserRepo(_apiConnector, _databaseWrapper);
}