getMosquitoSpeciesByName method

Future<MosquitoSpecies?> getMosquitoSpeciesByName(
  1. String scientificName,
  2. String languageCode
)

Retrieves a mosquito species by its scientific name.

scientificName The scientific name of the mosquito species. languageCode The language code for localized content. Returns the mosquito species if found, null otherwise.

Implementation

Future<MosquitoSpecies?> getMosquitoSpeciesByName(String scientificName, String languageCode) async {
  return await _databaseService.getMosquitoSpeciesByName(scientificName, languageCode);
}