class SiteCheck { final String url; SiteCheck(this.url); String toLine() => url; static SiteCheck fromLine(String line) => SiteCheck(line); }