make eager parsing required

This commit is contained in:
Fabian Freund
2025-09-10 14:47:30 +02:00
parent 4f37be28e6
commit 6622dc5b27
3 changed files with 13 additions and 3 deletions
+1 -1
View File
@@ -22,8 +22,8 @@ import 'package:weblibre/utils/uri_parser.dart' as uri_parser;
String? validateUrl(
String? value, {
required bool eagerParsing,
bool requireAuthority = true,
bool eagerParsing = true,
bool onlyHttpProtocol = false,
bool required = true,
}) {