InputEncode constructor

const InputEncode({
  1. Key? key,
  2. String? label,
  3. required String hint,
  4. required TextEditingController controller,
  5. dynamic onChange(
    1. String?
    )?,
  6. bool obscureText = false,
  7. TextAlign? textAlign,
  8. FocusNode? focusNode,
  9. EdgeInsets? padding,
  10. IconData? leading,
  11. dynamic onLeadingTap()?,
  12. TextInputType? keyboardType,
  13. bool showCursor = true,
})

Implementation

const InputEncode({
  super.key,
  this.label,
  required this.hint,
  required this.controller,
  this.onChange,
  this.obscureText = false,
  this.textAlign,
  this.focusNode,
  this.padding,
  this.leading,
  this.onLeadingTap,
  this.keyboardType,
  this.showCursor = true,
});