EmailValidationTextField constructor

const EmailValidationTextField({
  1. Key? key,
  2. TextInputAction? textInputAction,
  3. TextStyle? style,
  4. Function? onSaved,
  5. Function? onTap,
  6. String? whenTextFieldEmpty,
  7. double? cursorHeight,
  8. Radius? cursorRadius,
  9. double? cursorWidth,
  10. Color? cursorColor,
  11. Brightness? keyboardAppearance,
  12. bool? readOnly,
  13. Function? onChanged,
  14. bool? showCursor,
  15. bool? autocorrect,
  16. TextInputType? keyboardType,
  17. InputDecoration? decoration,
  18. TextEditingController? textEditingController,
  19. String? validatorMassage,
})

Implementation

const EmailValidationTextField(
    {Key? key,
    this.textInputAction,
    this.style,
    this.onSaved,
    this.onTap,
    this.whenTextFieldEmpty,
    this.cursorHeight,
    this.cursorRadius,
    this.cursorWidth,
    this.cursorColor,
    this.keyboardAppearance,
    this.readOnly,
    this.onChanged,
    this.showCursor,
    this.autocorrect,
    this.keyboardType,
    this.decoration,
    this.textEditingController,
    this.validatorMassage})
    : super(key: key);