GenericStringValue constructor

GenericStringValue({
  1. String defaultValue = "",
  2. bool isRequired = true,
  3. int? maxLenght,
  4. int? minLenght,
})

Implementation

GenericStringValue({
  super.defaultValue = "",
  super.isRequired = true,
  this.maxLenght,
  this.minLenght,
});