UserName constructor
- String val
Implementation
UserName(String val) : super(val) {
if (!_regExp.hasMatch(val)) {
throw FormatException('Does not match validation RegExp: `$val`');
}
}
UserName(String val) : super(val) {
if (!_regExp.hasMatch(val)) {
throw FormatException('Does not match validation RegExp: `$val`');
}
}