LastNameValidator constructor
LastNameValidator({})
Constructor for the last name validator.
Implementation
LastNameValidator({
/// {@macro last_name_template}
RegExp? regex,
this.lastNameWhitelist = const <String>[],
this.lastNameBlacklist = const <String>[],
super.errorText,
super.checkNullOrEmpty,
}) : regex = regex ?? _lastName;