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