Control constructor
Control({ - required String key,
- required ControlType type,
- Widget? content,
- String? description,
- void onChange(
- dynamic
)?,
- List<Control>? settings,
- String? title,
- dynamic value,
- TextInputType? keyboardType,
- FormFieldValidator<String>? validator,
- bool isRequired = true,
- Widget? prefixIcon,
- 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,
});