NuntioTextField constructor

NuntioTextField({
  1. EdgeInsets padding = EdgeInsets.zero,
  2. required TextEditingController controller,
  3. String? label,
  4. String? hint,
  5. TextInputType? textInputType,
  6. bool? obscureText,
  7. TextInputAction? textInputAction,
  8. dynamic onChanged(
    1. String
    )?,
  9. IconData? prefix,
  10. Brightness? brightness,
  11. FocusNode? focusNode,
  12. EdgeInsets? scrollPadding,
  13. Iterable<String>? autofillHints,
  14. String? validator(
    1. String? val
    )?,
})

Implementation

NuntioTextField({
  this.padding = EdgeInsets.zero,
  required this.controller,
  this.label,
  this.hint,
  this.textInputType,
  this.obscureText,
  this.textInputAction,
  this.onChanged,
  this.prefix,
  this.brightness,
  this.focusNode,
  this.scrollPadding,
  this.autofillHints,
  this.validator,
});