Control constructor

Control({
  1. required String key,
  2. required ControlType type,
  3. Widget? content,
  4. String? description,
  5. void onChange(
    1. dynamic
    )?,
  6. List<Control>? settings,
  7. String? title,
  8. dynamic value,
  9. TextInputType? keyboardType,
  10. FormFieldValidator<String>? validator,
  11. bool isRequired = true,
  12. Widget? prefixIcon,
  13. List<TextInputFormatter>? formatInputs,
})

Implementation

Control({
  required this.key,
  required this.type,
  this.content,
  this.description,
  this.onChange,
  this.settings,
  this.title,
  this.value,
  this.keyboardType,
  this.validator,
  this.isRequired = true,
  this.prefixIcon,
  this.formatInputs,
});