AtomicInput constructor

AtomicInput({
  1. String? hintText,
  2. GestureTapCallback? onTap,
  3. String? keyValue,
  4. InputType? inputType,
  5. FormType? formType,
  6. Function? funcValidatorUsername,
  7. Function? funcValidatorPassword,
  8. TextEditingController? usernameController,
  9. TextEditingController? passwordController,
  10. TextEditingController? searchController,
  11. TextEditingController? inputController,
})

Implementation

AtomicInput(
    {this.hintText,
    this.onTap,
    this.keyValue,
    this.inputType,
    this.formType,
    this.funcValidatorUsername,
    this.funcValidatorPassword,
    this.usernameController,
    this.passwordController,
    this.searchController,
    this.inputController});