LicensePlateValidator constructor
LicensePlateValidator({})
Constructor for the license plate validator.
Implementation
LicensePlateValidator({
/// {@macro license_plate_template}
RegExp? regex,
this.licensePlateWhitelist = const <String>[],
this.licensePlateBlacklist = const <String>[],
super.errorText,
super.checkNullOrEmpty,
}) : regex = regex ?? _licensePlate;