UserTextStatus constructor

UserTextStatus(
  1. String val
)

Implementation

UserTextStatus(String val) : super(val) {
  if (val.length > 25) {
    throw const FormatException('Must contain no more than 25 characters');
  } else if (val.isEmpty) {
    throw const FormatException('Must not be empty');
  }
}