Params constructor

Params({
  1. int? length,
  2. bool mandatory = false,
  3. int? minAllowed,
  4. int? maxAllowed,
  5. bool? isMultiple,
  6. DisplayMode? displayMode,
  7. SelectPlusValueMode? selectPlusValueType,
  8. String? unit,
  9. String? placeholder,
  10. int? minimumInputLines,
  11. String? description,
  12. String? imgUrl,
  13. String? imgDescription,
  14. String? minValueLabel,
  15. String? maxValueLabel,
  16. String? nullBoolLabel,
  17. String? selectorDisplayMode,
  18. String? ratingDisplayMode,
  19. bool? hasOtherOption,
})

Implementation

Params({
  this.length,
  this.mandatory = false,
  this.minAllowed,
  this.maxAllowed,
  this.isMultiple,
  this.displayMode,
  this.selectPlusValueType,
  this.unit,
  this.placeholder,
  this.minimumInputLines,
  this.description,
  this.imgUrl,
  this.imgDescription,
  this.minValueLabel,
  this.maxValueLabel,
  this.nullBoolLabel,
  this.selectorDisplayMode,
  this.ratingDisplayMode,
  this.hasOtherOption,
});