getScraper static method
Implementation
static BaseScraper getScraper(String state, Document document) {
if (!_scrapers.containsKey(state)) {
throw Exception('Scraper for state $state not implemented!');
}
return _scrapers[state]!(document);
}