UriValidator constructor
const
UriValidator({})
Implementation
const UriValidator({
this.path,
this.host,
this.scheme,
this.port,
String? fieldName,
String? errorMessage,
}) : super(
fieldName: fieldName,
message: errorMessage ?? 'should be a valid Uri',
);