extractEmails method

List<String> extractEmails()

Extract email addresses found on the page

Implementation

List<String> extractEmails() {
  if (_htmlContent == null) {
    throw ScraperNotInitializedException();
  }

  return SmartExtractor.extractEmails(_htmlContent!);
}