AppCmsInput constructor

const AppCmsInput({
  1. Key? key,
  2. required String controller,
  3. required String localetext,
  4. required bool obscureText,
  5. required bool readOnly,
  6. required bool autofocus,
  7. required TextInputAction textInputAction,
  8. required TextInputType keyboardType,
  9. required String variant,
  10. required bool suffix,
  11. required String onSuffixClick,
})

Implementation

const AppCmsInput({
  super.key,
  required this.controller,
  required this.localetext,
  required this.obscureText,
  required this.readOnly,
  required this.autofocus,
  required this.textInputAction,
  required this.keyboardType,
  required this.variant,
  required this.suffix,
  required this.onSuffixClick,
});