StreetValidator constructor
StreetValidator({})
Constructor for the street name validator.
Implementation
StreetValidator({
/// {@macro street_template}
RegExp? regex,
this.streetWhitelist = const <String>[],
this.streetBlacklist = const <String>[],
super.errorText,
super.checkNullOrEmpty,
}) : regex = regex ?? _street;