NuntioTextField constructor

NuntioTextField({
  1. required HeraTextStyle nuntioTextStyle,
  2. required NuntioStyle nuntioStyle,
  3. required HeraColor nuntioColor,
  4. TextEditingController? controller,
  5. String? label,
  6. String? hint,
  7. TextInputType? textInputType,
  8. bool? obscureText,
  9. TextInputAction? textInputAction,
  10. dynamic onSubmitted(
    1. String
    )?,
  11. dynamic onChanged(
    1. String
    )?,
  12. IconData? prefix,
  13. Brightness? brightness,
})

Implementation

NuntioTextField({
  required this.nuntioTextStyle,
  required this.nuntioStyle,
  required this.nuntioColor,
  this.controller,
  this.label,
  this.hint,
  this.textInputType,
  this.obscureText,
  this.textInputAction,
  this.onSubmitted,
  this.onChanged,
  this.prefix,
  this.brightness,
});