UFUSingleSelectModel constructor

UFUSingleSelectModel({
  1. required String label,
  2. required String id,
  3. Widget? child,
  4. Color? color,
  5. Color? borderColor,
  6. double? borderWidth,
  7. Widget? suffix,
  8. VoidCallback? onTapItem,
  9. dynamic additionalData,
  10. String? prefixLabel,
  11. String subLabel = '',
  12. UFUInputBoxController? labelController,
  13. bool? isEditable = false,
  14. bool? active = true,
})

Implementation

UFUSingleSelectModel({
  required this.label,
  required this.id,
  this.child,
  this.color,
  this.borderColor,
  this.borderWidth,
  this.suffix,
  this.onTapItem,
  this.additionalData,
  this.prefixLabel,
  this.subLabel = '',
  this.labelController,
  this.isEditable = false,
  this.active = true
});