PluginTextFormField constructor

const PluginTextFormField({
  1. Key? key,
  2. String? label,
  3. String? hintText,
  4. List<TextInputFormatter>? inputFormatters,
  5. TextEditingController? controller,
  6. EdgeInsetsGeometry? padding,
  7. FormFieldValidator<String>? validator,
  8. FocusNode? focusNode,
  9. dynamic onChanged(
    1. String
    )?,
  10. Widget? suffix,
  11. TextInputType? keyboardType,
  12. AutovalidateMode? autovalidateMode,
})

Implementation

const PluginTextFormField(
    {Key? key,
    this.label,
    this.hintText,
    this.inputFormatters,
    this.controller,
    this.padding,
    this.validator,
    this.focusNode,
    this.onChanged,
    this.suffix,
    this.keyboardType,
    this.autovalidateMode})
    : super(key: key);