getAllMosquitoSpecies method

Future<List<MosquitoSpecies>> getAllMosquitoSpecies(
  1. String languageCode
)

Retrieves all mosquito species from the database.

languageCode The language code (e.g., 'en', 'es') for localized content. Returns a list of all available mosquito species.

Implementation

Future<List<MosquitoSpecies>> getAllMosquitoSpecies(String languageCode) async {
  return await _databaseService.getAllMosquitoSpecies(languageCode);
}