PopupWidgetInputModel constructor

PopupWidgetInputModel({
  1. required String title,
  2. String? hint,
  3. required TextEditingController controller,
  4. TextInputType keyboardType = TextInputType.text,
  5. bool enable = true,
  6. bool isObsecure = false,
})

Implementation

PopupWidgetInputModel({
  required this.title,
  this.hint,
  required this.controller,
  this.keyboardType = TextInputType.text,
  this.enable = true,
  this.isObsecure = false,
});