TestPickerWidget constructor

TestPickerWidget({
  1. Key? key,
  2. required Object obj,
  3. required String labeltext,
  4. required TextEditingController controller,
  5. required String valuetext,
  6. bool? readonly = false,
  7. Color? focusColor = Colors.black,
  8. String? validator(
    1. String?
    )?,
  9. TextInputType? keyboardType,
  10. List? inputFormatters,
  11. void on_changed_function()?,
  12. 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);