UserPassword constructor

UserPassword(
  1. String val
)

Implementation

UserPassword(String val) : super(val) {
  if (val.isEmpty) {
    throw const FormatException('Must not be empty');
  } else if (val.length > 250) {
    throw const FormatException('Must contain no more than 250 characters');
  } else if (!_regExp.hasMatch(val)) {
    throw FormatException('Does not match validation RegExp: `$val`');
  }
}