VinValidator constructor
VinValidator({})
Constructor for the VIN validator.
Implementation
VinValidator({
/// {@macro vin_template}
RegExp? regex,
this.vinWhitelist = const <String>[],
this.vinBlacklist = const <String>[],
super.errorText,
super.checkNullOrEmpty,
}) : regex = regex ?? _vin;