extract method

List<String> extract(
  1. String html
)

Extracts data from the given HTML using this selector

Implementation

List<String> extract(String html) {
  final document = html_parser.parse(html);
  return extractFromDocument(document);
}