InputTextField constructor
const
InputTextField({
- Key? key,
- required String labelText,
- required String eventName,
- String hintText = '',
- String? helpText,
- bool isSensitiveText = false,
- bool hasErrorMessage = true,
- bool isOnChangeValidation = false,
- TextInputType? keyboardType,
- required TextEditingController controller,
- String? validator(
- String value
- Widget? secondaryAction,
- FocusNode? focusNode,
- FocusNode? nextFocusNode,
- IconData? icon,
Implementation
const InputTextField({
Key? key,
required this.labelText,
required this.eventName,
this.hintText = '',
this.helpText,
this.isSensitiveText = false,
this.hasErrorMessage = true,
this.isOnChangeValidation = false,
this.keyboardType,
required this.controller,
this.validator,
this.secondaryAction,
this.focusNode,
this.nextFocusNode,
this.icon,
}) : super(key: key);