static bool isValidWebURL(String? url) { return url != null && url.isNotEmpty && Regs.url.hasMatch(url); }