HTMLContentValue constructor

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

Implementation

HTMLContentValue({
  super.defaultValue = "",
  super.isRequired = false,
  this.maxLenght,
  this.minLenght,
});