UFUMultiSelectModel constructor

UFUMultiSelectModel({
  1. required String label,
  2. required String id,
  3. String? prefixLabel,
  4. String? suffixLabel,
  5. Widget? child,
  6. Color? color,
  7. Color? borderColor,
  8. required bool isSelect,
  9. List<UFUMultiSelectModel>? subList,
  10. int? subListLength,
  11. List<TagLimitedModel>? tags,
  12. dynamic additionData,
  13. bool displayLabelOnly = false,
  14. bool? active = true,
  15. UFUInputBoxController? labelController,
  16. bool isDisabled = false,
  17. String? disableMessage,
  18. dynamic additionalDetails,
})

Implementation

UFUMultiSelectModel({
  required this.label,
  required this.id,
  this.prefixLabel,
  this.suffixLabel,
  this.child,
  this.color,
  this.borderColor,
  required this.isSelect,
  this.subList,
  this.subListLength,
  this.tags,
  this.additionData,
  this.displayLabelOnly = false,
  this.active = true,
  this.labelController,
  this.isDisabled = false,
  this.disableMessage,
  this.additionalDetails,
});