TestPickerWidget constructor
TestPickerWidget({
- Key? key,
- required Object obj,
- required String labeltext,
- required TextEditingController controller,
- required String valuetext,
- bool? readonly = false,
- Color? focusColor = Colors.black,
- String? validator()?,
- TextInputType? keyboardType,
- List? inputFormatters,
- void on_changed_function()?,
- bool? enabled,
Implementation
TestPickerWidget(
{Key? key,
required this.obj,
required this.labeltext,
required this.controller,
required this.valuetext,
this.readonly = false,
this.focusColor = Colors.black,
this.validator,
this.keyboardType,
this.inputFormatters,
this.on_changed_function,
this.enabled})
: super(key: key);