ProfanityTextfield constructor

const ProfanityTextfield({
  1. String? hintText,
  2. TextInputType? keyboardType = TextInputType.text,
  3. required TextEditingController controller,
  4. int? maxLength,
  5. Key? key,
  6. required GlobalKey<FormState> formkey,
})

Implementation

const ProfanityTextfield(
    {this.hintText,
    this.keyboardType = TextInputType.text,
    required this.controller,
    this.maxLength,
    super.key,
    required this.formkey});