@override List<Link> parse() { return _pattern .allMatches(text) .map((match) => Link(regExpMatch: match, type: email)) .toList(); }