static bool isValidUrl(String value) { try { Uri.parse(value); return true; } catch (e) { return false; } }